1、FireShowPageTraceBehavior bug
修正:
return new Exception($Message); 应改成 return new \Think\Exception($Message);
原因:
thinkphp的Exception被
ThinkPHP\Library\Think\Think.class.php中public static function autoload($class)控制无法找到Exception
2、ChromeShowPageTraceBehavior bug
ShowPageTraceBehavior bug
修正方法:
ThinkPHP\Library\Think\Log.class.php
添加属性
const FILE = ‘3‘;
原因:
调用Log::FILE属性时但Log类没有此属性
原文:http://blog.csdn.net/starparker/article/details/18883037