aboutsummaryrefslogtreecommitdiffstats
path: root/RELEASE-NOTES-1.21
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2012-12-07 16:50:58 +0100
committerAntoine Musso <hashar@free.fr>2012-12-07 16:53:12 +0100
commite32c8afe54367aa5d0b33f8b00d4f4c88838ebfe (patch)
tree97cf3e7ebb6a623ac2065fb7d8322cad3a8bb44f /RELEASE-NOTES-1.21
parent563bacc147f19efefeb7a2284ab07e10911ee435 (diff)
downloadmediawikicore-e32c8afe54367aa5d0b33f8b00d4f4c88838ebfe.tar.gz
mediawikicore-e32c8afe54367aa5d0b33f8b00d4f4c88838ebfe.zip
prefix debug log when they end up in the main log
Whenever we use wfDebugLog( "group", "message" ); and "group" is not also set in $wfDebugLogGroups, the group information is lost. By prefixing the message with the group name, it makes it obvious where the message comes from. Example output: ... [EventLogging] wgEventLoggingSchemaIndexUri has not been configured. [EventLogging] EventLogging requires memcached, and no memcached[...] Fully initialised Profiler::instance called without $wgProfiler['class'] set[...] Connected to database 0 at MessageGroups::init-nocache SQL ERROR (ignored): no such table: revtag_type MessageGroups::loadGroupDefinitions-end [ContentHandler] Created handler for wikitext: WikitextContentHandler [ContentHandler] Created handler for javascript: JavaScriptContentHandler ... Change-Id: Id75401bec516b5111cd1e3d4a9b29843953ce12b
Diffstat (limited to 'RELEASE-NOTES-1.21')
-rw-r--r--RELEASE-NOTES-1.213
1 files changed, 3 insertions, 0 deletions
diff --git a/RELEASE-NOTES-1.21 b/RELEASE-NOTES-1.21
index 220089d50e69..87a0058f156c 100644
--- a/RELEASE-NOTES-1.21
+++ b/RELEASE-NOTES-1.21
@@ -57,6 +57,9 @@ production.
debug mode: wfMsg, wfMsgNoTrans, wfMsgForContent, wfMsgForContentNoTrans,
wfMsgReal, wfMsgGetKey, wfMsgHtml, wfMsgWikiHtml, wfMsgExt, wfEmptyMsg. Use
the Message class, or the global method wfMessage.
+* Debug message emitted by wfDebugLog() will now be prefixed with the group
+ name when its logged to the default log file. That is the case whenever the
+ group has no key in wgDebugLogGroups, that will help triage the default log.
=== Bug fixes in 1.21 ===
* (bug 40353) SpecialDoubleRedirect should support interwiki redirects.