From 18d952dbcb6c79cce74686d0ac74dc53879a3636 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 12 Dec 2014 11:04:33 -0800 Subject: [PATCH] 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 --- includes/context/RequestContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/context/RequestContext.php b/includes/context/RequestContext.php index 2a610a3a73..fe17fdef95 100644 --- a/includes/context/RequestContext.php +++ b/includes/context/RequestContext.php @@ -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; -- 2.20.1