欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解PHP的Yii框架中日志的相关配置及使用

程序员文章站 2022-05-25 14:18:20
默认的日志是输出到protected/runtime/application.log 如果需要修改那么需要在main.php里面的 components 下面增加log配...

默认的日志是输出到protected/runtime/application.log

如果需要修改那么需要在main.php里面的 components 下面增加log配置,如下:

'preload' => array('log'),//这句也必须加上

'components' => array( 
    'log'=>array( 
      'class'=>'clogrouter', 
      'routes'=>array(
        //这是一个文件route表示category为test开头的所有类型的输出都会记录到runtime/test.log下面 
         array( 
           'class'=>'cfilelogroute', 
           'levels'=>'trace, info, debug, warn, error, fatal, profile', 
           'categories'=>'test.*', 
           'maxfilesize'=>1048576,//单文件最大1g 
           'logfile'=>'test.log', 
         ), 
         // 
 
//        开发过程中所有日志直接输出到浏览器了,这样不需要登录服务器看日志了  

           
         array( 
          'class' => 'cweblogroute', 
          'categories' => 'test.*', 
          'levels' => clogger::level_profile, 
          'showinfirebug' => true, 
          'ignoreajaxinfirebug' => true, 
        ), 
        array( 
          'class' => 'cweblogroute', 
          'categories' => 'test.* ', 
        ), 

        array( 
          'class'=>'cemaillogroute', 
          'levels'=>'error, warning', 
          'emails'=>'admin@example.com', 
        ), 
      ), 
    ), 
 
  ),


如果在某处调用了yii::log("jdkshgds","info",'test.xx');

这个log首先被记录在了内存中一个clogger类的array中,然后会逐一的判断每个logroute,判断是否需要输出,注意是逐一判断,不是其中一个输出下一个就不管了。

拿上面的配置来说:

第一个cfilelogroute,'categories'=>'test.*',levels里包含了info, test.xx满足条件,所以会执行,将这条log输出到test.log中,然后下一个cweblogroute, 'levels' => clogger::level_profile,。而这条log是info的,所以不会执行,再下一个cweblogroute,'categories' => 'test.* ',levels没指定,那就说不过滤,所以这个也会被执行,所以这条log将被输出到浏览器中。

二、profile功能
另外logger还有一个很强大的功能:profile,

yii::beginprofile('blockid');
...code block being profiled...
yii::endprofile('blockid');

这样就能测试这个code block的执行效率了,非常的方便啊。

更详细的配置查看:http://www.yiiframework.com/doc/api/1.1/cprofilelogroute

然后还有一个很bug的功能,profiling sql executions

很多时候sql语句写的不好会非常影响效率的,但是要确定哪一条语句影响了效率就需要profiling了。yii也提供了这个bug级别的功能。

三、yii::log()和yii::trace()的使用
首先在config文件中设置log

'log'=>array(
  'class'=>'clogrouter',
  'routes'=>array(
    array(
      'class'=>'cfilelogroute',//这表示把日志输出到文件中,下方有详细的
      'levels'=>'error, warning',
    ),
    array(
      'class'=>'cweblogroute',//这表示把日志显示在网页下方,下方有详细的
      'levels'=>'trace, info, error, warning',
      'categories'=>'cool.*,system.db.*',
    ),
  ),
),


日志路由class:

  • cdblogroute: 将信息保存到数据库的表中。
  • cemaillogroute: 发送信息到指定的 email 地址。
  • cfilelogroute: 保存信息到应用程序 runtime 目录中的一个文件中。
  • cweblogroute: 将 信息 显示在当前页面的底部。
  • cprofilelogroute: 在页面的底部显示概述(profiling)信息。

信息级别levels:

  • trace: 这是在 yii::trace 中使用的级别。它用于在开发中 跟踪程序的执行流程。
  • info: 这个用于记录普通的信息。
  • profile: 这个是性能概述(profile)。下面马上会有更详细的说明。
  • warning: 这个用于警告(warning)信息。
  • error: 这个用于致命错误(fatal error)信息。

分类categories:

可以自定义,但在输出函数里要对应才会被写入日志里
(例如上边写的是 cool.* 和 system.db.* ,就会把相应分类的信息写入日志,请结合下文来理解)

设置完了,就可以用写入日志的函数来记录了:

yii::trace('my log message.','cool.pd');
//cool.pd属于cool.*分类,所以会被写入日志
yii::log('my log message.','info','cool.collectpd');
//log定义级别为info,结合上文,第一个logclass会忽略,不会被写入文件,但会被第二个logclass接收,写入日志在网络下方显示。


trace()和log()的区别:
trace()只会在调试模式下生效,即开启debug的时候
trace()不分level,但log()能设置levels参数


四、调试sql query每个语句执行的耗时
在配置中的log下加上下面这个route

//这个配置专门负责数据库操作的profile 
array( 
    'class'=>'cprofilelogroute', 
    'levels' => clogger::level_profile, 
    'showinfirebug' => true, 
    'ignoreajaxinfirebug' => true, 
    'categories' => 'system.db.* ', //只记录db的操作日志,其他的忽略 
),

然后在某个controller的某个action中加入:

yii::beginprofile('db', 'pocketpet'); 
for($i=0;$i<1000;$i++){ 
   $user = usermodel::model()->findbypk("1");//这里只要是数据库操作就行,这个只是个例子 
}

yii::endprofile('db', 'pocketpet');

在浏览器中访问这个action,记得先打开firebug,然后firebug中就能看到如下图的记录:

详解PHP的Yii框架中日志的相关配置及使用

相同的query会进行归类,计算total和average,这个对于分析还是非常有帮助的。

也可以将db的日志写到文件,配置如下(不建议使用,还是到浏览器用firebug方便):

array( 
  'class'=>'cfilelogroute', 
  'levels' => clogger::level_profile, 
  'categories' => 'system.db.* ', //只记录db的操作日志,其他的忽略 
  'logfile'=>'db.log', 
),

当然,想要生效还得有下面两步配置:

1 . 记得在index.php, 中加入以下配置

$yii = dirname(__file__).'/../yii/framework/yii.php';
$config = dirname(__file__).'/protected/config/main.php';

defined('yii_debug') or define('yii_debug',true);

defined('yii_debug_show_profiler') or define('yii_debug_show_profiler',true);
//enable profiling
defined('yii_debug_profiling') or define('yii_debug_profiling',true);
//trace level
defined('yii_trace_level') or define('yii_trace_level',3);
//execution time
defined('yii_debug_display_time') or define('yii_debug_display_time',false);
require_once($yii);
yii::createwebapplication($config)->run();

2. 在main.php主配置文件里面,的components db 里将enableprofiling设置为true

'components' => array(
'db' => array(
    'enableprofiling' => true, //这个是用来记录日志的,会记录每一条语句执行的时间
    'enableparamlogging' => true,//true表示包括sql语句的参数在内的信息都会记录到日志里,非常详细
  ),
)