From f19b1dd360f3d417aaa5ed045d5f35892630a8ef Mon Sep 17 00:00:00 2001 From: QWp6t Date: Sun, 28 Feb 2021 21:52:43 -0800 Subject: [PATCH] chore(config-log): use generic `application.log` --- config/logging.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/logging.php b/config/logging.php index d14b127..1037700 100644 --- a/config/logging.php +++ b/config/logging.php @@ -40,19 +40,19 @@ return [ 'channels' => [ 'stack' => [ 'driver' => 'stack', - 'channels' => ['single'], + 'channels' => ['daily'], 'ignore_exceptions' => false, ], 'single' => [ 'driver' => 'single', - 'path' => storage_path('logs/acorn.log'), + 'path' => storage_path('logs/application.log'), 'level' => env('LOG_LEVEL', 'debug'), ], 'daily' => [ 'driver' => 'daily', - 'path' => storage_path('logs/acorn.log'), + 'path' => storage_path('logs/application.log'), 'level' => env('LOG_LEVEL', 'debug'), 'days' => 14, ], @@ -60,7 +60,7 @@ return [ 'slack' => [ 'driver' => 'slack', 'url' => env('LOG_SLACK_WEBHOOK_URL'), - 'username' => 'Acorn Log', + 'username' => 'Application Log', 'emoji' => ':boom:', 'level' => env('LOG_LEVEL', 'critical'), ], @@ -100,7 +100,7 @@ return [ ], 'emergency' => [ - 'path' => storage_path('logs/acorn.log'), + 'path' => storage_path('logs/application.log'), ], ],