From: Reedy Date: Mon, 15 Oct 2012 20:32:20 +0000 (+0100) Subject: Use wfDebugLog() not wfErrorLog() X-Git-Tag: 1.31.0-rc.0~22009 X-Git-Url: http://git.cyclocoop.org//%27http:/jquery.khurshid.com/ifixpng.php/%27?a=commitdiff_plain;h=505c5cbfe3c3284b1fef6ae951ad2347a3a596e9;p=lhc%2Fweb%2Fwiklou.git Use wfDebugLog() not wfErrorLog() Change-Id: I98dca32d788a4ff3ea102afe358e91b9ff4b06a5 --- diff --git a/includes/resourceloader/ResourceLoaderFileModule.php b/includes/resourceloader/ResourceLoaderFileModule.php index ec4a14d9c6..aa177f8a03 100644 --- a/includes/resourceloader/ResourceLoaderFileModule.php +++ b/includes/resourceloader/ResourceLoaderFileModule.php @@ -621,7 +621,7 @@ class ResourceLoaderFileModule extends ResourceLoaderModule { $localPath = $this->getLocalPath( $path ); if ( !file_exists( $localPath ) ) { $msg = __METHOD__.": style file not found: \"$localPath\""; - wfErrorLog( $msg, 'resourceloader' ); + wfDebugLog( 'resourceloader', $msg ); throw new MWException( $msg ); } $style = file_get_contents( $localPath );