Skip to content

Commit 0a3523e

Browse files
authored
--log-level option in octane:start command (#701)
1 parent 3a9f238 commit 0a3523e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Commands/StartCommand.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ class StartCommand extends Command implements SignalableCommandInterface
2424
{--max-requests=500 : The number of requests to process before reloading the server}
2525
{--rr-config= : The path to the RoadRunner .rr.yaml file}
2626
{--watch : Automatically reload the server when the application is modified}
27-
{--poll : Use file system polling while watching in order to watch files over a network}';
27+
{--poll : Use file system polling while watching in order to watch files over a network}
28+
{--log-level= : Log messages at or above the specified log level}';
2829

2930
/**
3031
* The command's description.
@@ -84,6 +85,7 @@ protected function startRoadRunnerServer()
8485
'--rr-config' => $this->option('rr-config'),
8586
'--watch' => $this->option('watch'),
8687
'--poll' => $this->option('poll'),
88+
'--log-level' => $this->option('log-level'),
8789
]);
8890
}
8991

0 commit comments

Comments
 (0)