使用laravel指定日志文件记录任意日志
今天小编就为大家分享一篇使用laravel指定日志文件记录任意日志,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧如下所示:
(new Logger('邮件发送失败'))
->pushHandler(new RotatingFileHandler(storage_path('logs/email_send.log')))
->info(json_encode([
'data' => $notifiable,
'error' => $e->getMessage()
],320));
实际效果如下:
方式二:
use Log;
...
public function testLog()
{
$customer_id = 111;
$code = 333;
Log::getMonolog()->popHandler();
Log::useFiles(storage_path('logs/data_info_market.log'), 'info');
Log::info('==>id=' . $customer_id . ',code=' . $code);
}
以上这篇使用laravel指定日志文件记录任意日志就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持CodeAE代码之家。
原文链接:https://blog.csdn.net/zhezhebie/article/details/88012504
http://www.zzvips.com/article/189836.html
页:
[1]