Skip to content

Commit c28ad91

Browse files
committed
[Console] Add missing VERBOSITY_SILENT case in CommandDataCollector
1 parent cdb80fa commit c28ad91

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

DataCollector/CommandDataCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public function collect(Request $request, Response $response, ?\Throwable $excep
4343
'duration' => $command->duration,
4444
'max_memory_usage' => $command->maxMemoryUsage,
4545
'verbosity_level' => match ($command->output->getVerbosity()) {
46+
OutputInterface::VERBOSITY_SILENT => 'silent',
4647
OutputInterface::VERBOSITY_QUIET => 'quiet',
4748
OutputInterface::VERBOSITY_NORMAL => 'normal',
4849
OutputInterface::VERBOSITY_VERBOSE => 'verbose',

0 commit comments

Comments
 (0)