@@ -160,7 +160,7 @@ You can also set these colors and options inside the tagname::
160160 // bold text on a yellow background
161161 $output->writeln('<bg=yellow;options=bold>foo</bg=yellow;options=bold>');
162162
163- Verbositylevels
163+ VerbosityLevels
164164~~~~~~~~~~~~~~~~
165165
166166The console has 3 levels of verbosity. These are defined in the
@@ -178,14 +178,21 @@ You can specify the quiet verbosity level with the ``--quiet`` or ``-q``
178178option. The ``--verbose `` or ``-v `` option is used when you want an increased
179179level of verbosity.
180180
181- It is possible to print messages in a command only for the according verbosity
181+ ..tip ::
182+
183+ The full exception stacktrace is printed if the ``VERBOSITY_VERBOSE ``
184+ level is used.
185+
186+ It is possible to print a message in a command for only a specific verbosity
182187level. For example::
183188
184189 if (OutputInterface::VERBOSITY_VERBOSE === $output->getVerbosity()) {
185190 $output->writeln(...);
186191 }
187192
188- Note that when the quiet level is used, all output is suppressed.
193+ When the quiet level is used, all output is suppressed as the default
194+ :method: `Symfony\C omponent\C onsole\O utput::write<Symfony\\ Component\\ Console\\ Output::write> `
195+ method returns without actually printing.
189196
190197Using Command Arguments
191198-----------------------