diff --git a/src/Commands/Concerns/InteractsWithIO.php b/src/Commands/Concerns/InteractsWithIO.php index 1bd2b2a08..4947d7266 100644 --- a/src/Commands/Concerns/InteractsWithIO.php +++ b/src/Commands/Concerns/InteractsWithIO.php @@ -248,7 +248,7 @@ public function handleStream($stream, $verbosity = null) 'throwable' => $this->throwableInfo($stream, $verbosity), 'shutdown' => $this->shutdownInfo($stream, $verbosity), 'raw' => $this->raw(json_encode($stream)), - default => $this->components->info(json_encode($stream), $verbosity) + default => $this->components->info(json_encode($stream), $this->parseVerbosity($verbosity)) }; } }