Skip to content

Commit d511d14

Browse files
authored
Log level fix (#456)
There was the PR to master which is fixes the issue #450 but it was not merged to the last version. The same fix is here
1 parent d8112ed commit d511d14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/StartRoadRunnerCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function handle(ServerProcessInspector $inspector, ServerStateFile $serve
8585
'-o', 'http.static.dir='.base_path('public'),
8686
'-o', 'http.middleware='.config('octane.roadrunner.http_middleware', 'static'),
8787
'-o', 'logs.mode=production',
88-
'-o', app()->environment('local') ? 'logs.level=debug' : 'logs.level=warning',
88+
'-o', app()->environment('local') ? 'logs.level=debug' : 'logs.level=warn',
8989
'-o', 'logs.output=stdout',
9090
'-o', 'logs.encoding=json',
9191
'serve',

0 commit comments

Comments
 (0)