Skip to content

Commit

Permalink
--log-level option in octane:start command (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
glushkovds authored May 26, 2023
1 parent 3a9f238 commit 0a3523e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Commands/StartCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ class StartCommand extends Command implements SignalableCommandInterface
{--max-requests=500 : The number of requests to process before reloading the server}
{--rr-config= : The path to the RoadRunner .rr.yaml file}
{--watch : Automatically reload the server when the application is modified}
{--poll : Use file system polling while watching in order to watch files over a network}';
{--poll : Use file system polling while watching in order to watch files over a network}
{--log-level= : Log messages at or above the specified log level}';

/**
* The command's description.
Expand Down Expand Up @@ -84,6 +85,7 @@ protected function startRoadRunnerServer()
'--rr-config' => $this->option('rr-config'),
'--watch' => $this->option('watch'),
'--poll' => $this->option('poll'),
'--log-level' => $this->option('log-level'),
]);
}

Expand Down

0 comments on commit 0a3523e

Please sign in to comment.