From 10f8002da58af0a6cb23a0fbd8113dcfe86fdd4c Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 3 Oct 2021 12:44:53 +0200 Subject: [PATCH] Fix logging scope. --- config/logging.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/logging.php b/config/logging.php index 5ef3530380..fe22ffa672 100644 --- a/config/logging.php +++ b/config/logging.php @@ -68,7 +68,7 @@ return [ ], 'papertrail' => [ 'driver' => 'monolog', - 'level' => env('LOG_LEVEL', 'debug'), + 'level' => envNonEmpty('APP_LOG_LEVEL', 'info'), 'handler' => SyslogUdpHandler::class, 'handler_with' => [ 'host' => env('PAPERTRAIL_HOST'),