Skip to content

Commit

Permalink
Support just absolutely spamming the -vvvvv option
Browse files Browse the repository at this point in the history
  • Loading branch information
bobthecow committed Jun 9, 2024
1 parent c856125 commit 65e6a8b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,11 @@ private static function getVerbosityFromInput(InputInterface $input)
return self::VERBOSITY_VERY_VERBOSE;
case '3':
case 'vv': // `-vvv`
case 'vvv':
case 'vvvv':
case 'vvvvv':
case 'vvvvvv':
case 'vvvvvvv':
return self::VERBOSITY_DEBUG;
default: // implicitly normal, config file default wins
return;
Expand Down

0 comments on commit 65e6a8b

Please sign in to comment.