Skip to content

Commit ea8a039

Browse files
authored
[Bugfix] Logging level in production (alexjustesen#693)
1 parent 34a7764 commit ea8a039

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env.production

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FORCE_HTTPS=false
88

99
LOG_CHANNEL=stderr
1010
LOG_DEPRECATIONS_CHANNEL=null
11-
LOG_LEVEL=debug
11+
LOG_LEVEL=error
1212

1313
DB_CONNECTION=mysql
1414
DB_HOST=127.0.0.1

config/logging.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696

9797
'stderr' => [
9898
'driver' => 'monolog',
99-
'level' => env('LOG_LEVEL', 'debug'),
99+
'level' => env('LOG_LEVEL', 'error'),
100100
'handler' => StreamHandler::class,
101101
'formatter' => env('LOG_STDERR_FORMATTER'),
102102
'with' => [

0 commit comments

Comments
 (0)