We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f44e3 commit 6c319ebCopy full SHA for 6c319eb
src/Illuminate/Queue/Console/WorkCommand.php
@@ -214,6 +214,10 @@ protected function listenForEvents()
214
*/
215
protected function writeOutput(Job $job, $status, ?Throwable $exception = null)
216
{
217
+ if ($this->output->isQuiet() || $this->output->isSilent()) {
218
+ return;
219
+ }
220
+
221
$this->outputUsingJson()
222
? $this->writeOutputAsJson($job, $status, $exception)
223
: $this->writeOutputForCli($job, $status);
0 commit comments