From: Chad Horohoe Date: Tue, 4 Nov 2008 02:04:53 +0000 (+0000) Subject: Minor tweak in debug output. Makes much more readible (and per most other debug state... X-Git-Tag: 1.31.0-rc.0~44433 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=7e8f748bd218ce5cc0af7ca651f35ad8a40aee76;p=lhc%2Fweb%2Fwiklou.git 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. --- 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 );