Skip to content

Commit

Permalink
Log level fix (#456)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
masterjus committed Jan 5, 2022
1 parent d8112ed commit d511d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/StartRoadRunnerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function handle(ServerProcessInspector $inspector, ServerStateFile $serve
'-o', 'http.static.dir='.base_path('public'),
'-o', 'http.middleware='.config('octane.roadrunner.http_middleware', 'static'),
'-o', 'logs.mode=production',
'-o', app()->environment('local') ? 'logs.level=debug' : 'logs.level=warning',
'-o', app()->environment('local') ? 'logs.level=debug' : 'logs.level=warn',
'-o', 'logs.output=stdout',
'-o', 'logs.encoding=json',
'serve',
Expand Down

0 comments on commit d511d14

Please sign in to comment.