码迷,mamicode.com
首页 > 其他好文 > 详细

自定义日志文件写日志

时间:2016-05-04 13:30:06      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

use yii\log\FileTarget;

$time = microtime(true);

$log = new FileTarget();

$log->logFile =  Yii::$app->getRuntimePath()."/logs/a.log‘;

$log->message[] = [‘test‘,1,‘application‘,$time];

$log->export();

 

/*
* [0] => message (mixed, can be a string or some complex data, such as an exception object)
* [1] => level (integer)
* [2] => category (string)
* [3] => timestamp (float, obtained by microtime(true))
* [4] => traces (array, debug backtrace, contains the application code call stacks)
*/
传递参数按照这些信息进行传递就可以了。最后记住重要的一点
$log->messages[] 别忘了加[] 

自定义日志文件写日志

标签:

原文地址:http://www.cnblogs.com/yangyuqiu/p/5458040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!