配置指定日志记录目录

1/ config/logging.php 文件下 配置一个自定义

  

'cache' => [
'driver' => 'daily',
'path' => storage_path('logs/cache/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'days' => 14,
]

执行时
Log::channel('cache')->info('1111111', ['123', 222]);
让每一滴智慧绘制成一条不归路!
原文地址:https://www.cnblogs.com/JdsyJ/p/15699257.html