set verbose in command Symfony3

monkeyUser

I can set verbosity of my command with

php bin/console mycommand:command -vvv

How can i Set the same value with --verbose? 2.3 symfony

php bin/console mycommand:command --verbose=3

I have this error

 [Symfony\Component\Console\Exception\RuntimeException]  
  The "--verbose" option does not accept a value.   

With helper I can see this option

-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

Tobias Xy

I digged into the code and it seems to be a bug in the console component (I may be wrong, but I'm pretty sure it actually is a bug). The --verbose option is defined with a value of InputOption::VALUE_NONE, indicating it is not allowing any values.

I created a bug report here: https://github.com/symfony/symfony/issues/18546

It is a bug in the documentation of symfony and is not supported. Use -v, -vv or -vvv respectively (see the answer in my bug report).

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

set verbose in command Symfony3

From Dev

Disable verbose debugging in unix using set command

From Dev

Symfony3: How to set multiple connections?

From Dev

Linux command for verbose gc

From Dev

Run .desktop command verbose

From Dev

console command: log data to a specyfic file (Symfony3 and monolog)

From Dev

Symfony3 console running console command from controller

From Dev

How to make the dd command be verbose?

From Dev

How to make the dd command be verbose?

From Dev

Symfony3, set user last login date

From Dev

Symfony3, set user last login date

From Dev

Using db arrays in set and include in symfony3

From Dev

Java command line tool, verbose output flag

From Dev

How to hide the verbose of "find" command in ubuntu?

From Dev

Laravel Artisan Command show verbose error messages

From Dev

Force Verbose Mode in Windows DEL Command

From Dev

Is it possible to generate an entity and the corresponding table in a single command using symfony3 console

From Dev

How to set a prefix to bash verbose mode

From Dev

parse.com how to set verbose logging

From Dev

set verbose prints unrelated extra lines

From Dev

How to set parent id on a child entity when submitting symfony3 form

From Dev

Symfony2 and avoiding overly verbose code

From Dev

Silence custom command depending on CMAKE_VERBOSE_MAKEFILE

From Dev

How to use the --verbose flag in the MySQL 5.6 command line client?

From Dev

Using -verbosity and -version in the nuget command tool suppresses verbose output

From Dev

Can I verbose output during a copy command processing?

From Dev

The Command 'set'

From Dev

Django - set filter field label or verbose_name

From Dev

My java web start application only starts when verbose is set

Related Related

  1. 1

    set verbose in command Symfony3

  2. 2

    Disable verbose debugging in unix using set command

  3. 3

    Symfony3: How to set multiple connections?

  4. 4

    Linux command for verbose gc

  5. 5

    Run .desktop command verbose

  6. 6

    console command: log data to a specyfic file (Symfony3 and monolog)

  7. 7

    Symfony3 console running console command from controller

  8. 8

    How to make the dd command be verbose?

  9. 9

    How to make the dd command be verbose?

  10. 10

    Symfony3, set user last login date

  11. 11

    Symfony3, set user last login date

  12. 12

    Using db arrays in set and include in symfony3

  13. 13

    Java command line tool, verbose output flag

  14. 14

    How to hide the verbose of "find" command in ubuntu?

  15. 15

    Laravel Artisan Command show verbose error messages

  16. 16

    Force Verbose Mode in Windows DEL Command

  17. 17

    Is it possible to generate an entity and the corresponding table in a single command using symfony3 console

  18. 18

    How to set a prefix to bash verbose mode

  19. 19

    parse.com how to set verbose logging

  20. 20

    set verbose prints unrelated extra lines

  21. 21

    How to set parent id on a child entity when submitting symfony3 form

  22. 22

    Symfony2 and avoiding overly verbose code

  23. 23

    Silence custom command depending on CMAKE_VERBOSE_MAKEFILE

  24. 24

    How to use the --verbose flag in the MySQL 5.6 command line client?

  25. 25

    Using -verbosity and -version in the nuget command tool suppresses verbose output

  26. 26

    Can I verbose output during a copy command processing?

  27. 27

    The Command 'set'

  28. 28

    Django - set filter field label or verbose_name

  29. 29

    My java web start application only starts when verbose is set

HotTag

Archive