From 7e8f748bd218ce5cc0af7ca651f35ad8a40aee76 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Tue, 4 Nov 2008 02:04:53 +0000 Subject: [PATCH] Minor tweak in debug output. Makes much more readible (and per most other debug statements that mention the calling method), since -> gets turned to -> in the debug comments. --- includes/StubObject.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/StubObject.php b/includes/StubObject.php index ec52e7f462..e27f0b2554 100644 --- a/includes/StubObject.php +++ b/includes/StubObject.php @@ -95,7 +95,7 @@ class StubObject { if ( ++$recursionLevel > 2 ) { throw new MWException( "Unstub loop detected on call of \${$this->mGlobal}->$name from $caller\n" ); } - wfDebug( "Unstubbing \${$this->mGlobal} on call of \${$this->mGlobal}->$name from $caller\n" ); + wfDebug( "Unstubbing \${$this->mGlobal} on call of \${$this->mGlobal}::$name from $caller\n" ); $GLOBALS[$this->mGlobal] = $this->_newObject(); --$recursionLevel; wfProfileOut( $fname ); -- 2.20.1