日志级别warn更改为notic

This commit is contained in:
thinkphp
2015-12-27 20:56:17 +08:00
parent b1de2d21bc
commit ae72fd7e10
4 changed files with 5 additions and 5 deletions

View File

@@ -265,7 +265,7 @@ class Loader
if (class_exists($class)) {
$model = new $class($name);
} else {
Log::record('实例化不存在的类:' . $class, 'warn');
Log::record('实例化不存在的类:' . $class, 'notic');
$model = new Model($name);
}
}