AutoLoader: Remove "Class ... not found" debug message
authorKevin Israel <pleasestand@live.com>
Fri, 21 Mar 2014 15:07:08 +0000 (11:07 -0400)
committerKevin Israel <pleasestand@live.com>
Fri, 21 Mar 2014 15:42:14 +0000 (11:42 -0400)
Per existing FIXME comment: "This is not very polite. Assume we
do not manage the class."

Reverts the remaining portion of r44296 / 2f584f68a95a while
clarifying the "Give up" comment.

Change-Id: I4471f9376cae6b3c3e8df99e960770863ebf37ca

includes/AutoLoader.php

index 9d764e1..4fbf408 100644 (file)
@@ -1221,16 +1221,11 @@ class AutoLoader {
                }
 
                if ( !$filename ) {
-                       if ( function_exists( 'wfDebugLog' ) ) {
-                               # FIXME: This is not very polite.  Assume we do not manage the class.
-                               wfDebugLog( 'autoloader', "Class {$className} not found; skipped loading" );
-                       }
-
-                       # Give up
+                       // Class not found; let the next autoloader try to find it
                        return;
                }
 
-               # Make an absolute path, this improves performance by avoiding some stat calls
+               // Make an absolute path, this improves performance by avoiding some stat calls
                if ( substr( $filename, 0, 1 ) != '/' && substr( $filename, 1, 1 ) != ':' ) {
                        global $IP;
                        $filename = "$IP/$filename";