From f0c66e24a33c5e6ea2331f93ee7bfcacdd1af287 Mon Sep 17 00:00:00 2001 From: thinkphp Date: Thu, 11 Apr 2013 09:19:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E4=BE=8B=E5=8C=96=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E7=9A=84=E6=97=B6=E5=80=99=20=E5=A6=82=E6=9E=9C=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E5=8A=A0=E8=BD=BD=E6=A8=A1=E5=9E=8B=E7=B1=BB=20?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E4=BC=9A=E8=AE=B0=E5=BD=95=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E8=AD=A6=E5=91=8A=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Think/Loader.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Think/Loader.php b/Think/Loader.php index 156e37f1..b29ac1e7 100644 --- a/Think/Loader.php +++ b/Think/Loader.php @@ -146,6 +146,7 @@ class Loader { if(class_exists($class)) { $model = new $class($name); }else { + Log::record('实例化不存在的类:'.$class,'NOTIC'); $model = new Model($name); } $_model[$name.$layer] = $model;