Yii异常信息显示设置
第一步:log设置
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning',
),
array(
'class' => 'CProfileLogRoute',//显示页面加载的整个流程,包括mysql语句
'levels' => 'profile',
),
// array(
// 'class' => 'CWebLogRoute',
// 'levels' => 'profile,trace',
// ),
// uncomment the following to show log messages on web pages
array(
'class'=>'CWebLogRoute',
'levels'=>'profile,error,warning,trace,info,xdebug',
'showInFireBug'=>'true',//开启浏览器的firedebug
),
),
),
在log中添加
array(
'class'=>'CWebLogRoute',
'levels'=>'profile,error,warning,trace,info,xdebug',
'showInFireBug'=>'true',//开启浏览器的firedebug
),
'showInFireBug'=>'true'的使用必须开启浏览器的firebug
第二步:调试
开启浏览器,进行测试网站
从浏览器的firebug中可以看到,所有开启的错误提示
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/463
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/463