Skip to content

Commit

Permalink
Add parseVerbosity to the default on handleStream.
Browse files Browse the repository at this point in the history
Fixes: #918
  • Loading branch information
xiCO2k committed Jul 1, 2024
1 parent 76c4319 commit 64bf029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/Concerns/InteractsWithIO.php
Original file line number Diff line number Diff line change
Expand Up @@ -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))
};
}
}

0 comments on commit 64bf029

Please sign in to comment.