From: Aaron Schulz Date: Wed, 11 Nov 2015 21:36:53 +0000 (-0800) Subject: Remove spammy wfDebug() from LocalFile::loadFromCache() X-Git-Tag: 1.31.0-rc.0~9004^2 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=8c1d27c1d7b4b3bea8fbb5bdd1bc4b7b14e0ac93 Remove spammy wfDebug() from LocalFile::loadFromCache() Change-Id: I36ad31f197ec8f71c97e6a8673ac5ca979f8d9ab --- diff --git a/includes/filerepo/file/LocalFile.php b/includes/filerepo/file/LocalFile.php index 12d400758c..1a335386c2 100644 --- a/includes/filerepo/file/LocalFile.php +++ b/includes/filerepo/file/LocalFile.php @@ -256,7 +256,6 @@ class LocalFile extends File { // Check if the key existed and belongs to this version of MediaWiki if ( is_array( $cachedValues ) && $cachedValues['version'] == MW_FILE_VERSION ) { - wfDebug( "Pulling file metadata from cache key $key\n" ); $this->fileExists = $cachedValues['fileExists']; if ( $this->fileExists ) { $this->setProps( $cachedValues );