notic修正

This commit is contained in:
thinkphp
2016-02-02 21:41:38 +08:00
parent 8ed7c91b29
commit c0e8c95237
5 changed files with 12 additions and 12 deletions

View File

@@ -71,7 +71,7 @@ class Loader
APP_DEBUG && self::$load[] = $filename;
include $filename;
} else {
Log::record('autoloader error : ' . $filename, 'notic');
Log::record('autoloader error : ' . $filename, 'notice');
}
}
}
@@ -294,7 +294,7 @@ class Loader
if (class_exists($class)) {
$model = new $class($name);
} else {
Log::record('实例化不存在的类:' . $class, 'notic');
Log::record('实例化不存在的类:' . $class, 'notice');
$model = new Model($name);
}
}