ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 分文件保存日志 * laravel的日志默认是保存在一个文件中的 * 时间久了,文件就很大,很难找到需要的东西,所以可以按日期分开保存 ### 按如下修改 #### 如果配置文件在 config/logging.php 中 修改`stack`下的`channels`让`single`改为`daily`就可以了 ~~~ 'stack' => [ 'driver' => 'stack', 'channels' => ['daily'], // 修改日志保存通道 默认:single 'ignore_exceptions' => false, ], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/'.$path.'/laravel.log'), // 按请求路径保存路径 //'path' => storage_path('logs/laravel.log'), // 直接保存路径 'level' => env('LOG_LEVEL', 'debug'), 'days' => 14, ], ~~~ 按路径保存的时候,需要在配置文件`logging.php`上添加获取路径的代码 ~~~ $getPath = request()->getPathInfo(); $paths = explode('/', $getPath); $paths = array_values(array_filter($paths)); // 删除空元素 $path = empty($paths) ? "" : $paths[0]; ~~~ #### 如果配置文件在 config/app.php 文件中 1)调试模式和日志的配置都在 config/app.php 配置文件中 有些时候配置文件在 `config/logging.php` 中 2)打开调试模式 ~~~ 'debug' => env('APP_DEBUG', true) ~~~ 3)laravel的日志默认已经打开了(不可以关),我们可以修改一下日志的记录方式(默认 single 单文件记录) ~~~ 'log' => env('APP_LOG', 'daily') ~~~ PS:日志的记录方式有 single, daily, syslog, errorlog 4)设置报错级别(避免生成过多日志) ~~~ 'log_level' => env('APP_LOG_LEVEL', 'error') ~~~ PS:config/app.php 文件里默认是没这个配置项的,要自己加,可以使用的值还有 debug, info, notice, warning, error, critical, alert, emergency