Yii2 自定义日志文件写日志:类头部别忘了引入log类
use yii\log\FileTarget;
$time = microtime(true);
$log = new FileTarget();
$log->logFile = Yii::$app->getRuntimePath() . '/logs/songlin.log';
$log->messages[] = ['test',1,'application',$time];
$log->export();
这样基本就能写出来了,先看一下$log->message的类描述信息
/*
* [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 backtr
...
继续阅读
(192)