From 8c1d27c1d7b4b3bea8fbb5bdd1bc4b7b14e0ac93 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 11 Nov 2015 13:36:53 -0800 Subject: [PATCH] Remove spammy wfDebug() from LocalFile::loadFromCache() Change-Id: I36ad31f197ec8f71c97e6a8673ac5ca979f8d9ab --- includes/filerepo/file/LocalFile.php | 1 - 1 file changed, 1 deletion(-) 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 ); -- 2.20.1