Merge "Turn a wfDebug call in MessageCache::get into a wfDebugLog call"

This commit is contained in:
jenkins-bot 2014-10-03 18:08:27 +00:00 committed by Gerrit Code Review
commit f36b0fbca2

View file

@ -422,7 +422,7 @@ class MessageCache {
$this->mLoadedLanguages[$code] = true;
}
$info = implode( ', ', $where );
wfDebug( __METHOD__ . ": Loading $code... $info\n" );
wfDebugLog( 'MessageCache', __METHOD__ . ": Loading $code... $info\n" );
wfProfileOut( __METHOD__ );
return $success;