[Laravel] Log 사용시 날짜별 파일 저장하기
config\logging.php 'channels' => [ 'stack' => [ 'driver' => 'stack', //기본적으로 아래의 single로 지정되어있어서 로그 저장시 //laravel.log 파일에 계속 저장된다. //배열값을 daily로 바꾸면 날짜별로 저장된다. 'channels' => ['single'], 'ignore_exceptions' => false, ], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('..
2021. 1. 6.