我在这里关注信息: http ://www.yiiframework.com/doc/guide/1.1/en/topics.logging
请查看我的开发机器配置文件中的日志组件:
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CProfileLogRoute',
'levels'=>'error, warning, trace, info, profile',
),
array(
'class'=>'CWebLogRoute',
'levels'=>'error, warning, trace, info, profile',
'showInFireBug'=>true,
),
),
使用 CProfileLogRoute 是有任何用途的,只要我们在应用程序代码中放置这样的东西:
Yii::beginProfile('blockID');
...code block being profiled...
Yii::endProfile('blockID');
1)
如果唯一的目的是测量速度,那么这些级别是什么
'错误、警告、跟踪、信息、私人'
在这种情况下真的意味着什么?
非常感谢,MEM