Add more context to globaltitlefail logs
Currently stuff like: MessageCache::parse called by Message::toString/Message::parseText/MessageCache::parse with no title set. is showing up in the logs, and is totally useless. Change-Id: I0ac3ca906c5a67e19974e3434d0e929e6b27fbb2
This commit is contained in:
parent
cd33a4c000
commit
18d952dbcb
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ class RequestContext implements IContextSource {
|
|||
if ( $this->title === null ) {
|
||||
global $wgTitle; # fallback to $wg till we can improve this
|
||||
$this->title = $wgTitle;
|
||||
wfDebugLog( 'GlobalTitleFail', __METHOD__ . ' called by ' . wfGetAllCallers() . ' with no title set.' );
|
||||
wfDebugLog( 'GlobalTitleFail', __METHOD__ . ' called by ' . wfGetAllCallers( 5 ) . ' with no title set.' );
|
||||
}
|
||||
|
||||
return $this->title;
|
||||
|
|
|
|||
Loading…
Reference in a new issue