From 3d43706e4ef557077a846e52aeb6bb009700d86f Mon Sep 17 00:00:00 2001 From: BackwardsUser Date: Tue, 25 Mar 2025 01:56:43 -0400 Subject: [PATCH] Setup API logging channel --- config/logging.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/logging.php b/config/logging.php index 1345f6f..f87eec6 100644 --- a/config/logging.php +++ b/config/logging.php @@ -127,6 +127,12 @@ return [ 'path' => storage_path('logs/laravel.log'), ], + 'api' => [ + 'driver' => 'single', + 'path' => storage_path('storage/api.log'), + 'level' => 'debug', + ], + ], ];