@@ -9,10 +9,9 @@ Using the Logger
9
9
introduced in Symfony 2.5.
10
10
11
11
The Console component comes with a standalone logger complying with the
12
- `PSR-3_ ` standard.
13
- Depending of the verbosity setting, log messages will be sent to the
14
- :class: `Symfony\\ Component\\ Console\\ Output\\ OutputInterface ` instance
15
- passed as a parameter to the constructor.
12
+ `PSR-3_ ` standard. Depending on the verbosity setting, log messages will
13
+ be sent to the :class: `Symfony\\ Component\\ Console\\ Output\\ OutputInterface `
14
+ instance passed as a parameter to the constructor.
16
15
17
16
The logger does not have any external dependency except ``php-fig/log ``.
18
17
This is useful for console applications and commands needing a lightweight
@@ -76,7 +75,8 @@ Verbosity
76
75
---------
77
76
78
77
Depending on the verbosity level that the command is run, messages may or
79
- may not be sent to the ``Symfony\\Component\\Console\\Output\\OutputInterface `` instance.
78
+ may not be sent to the ``Symfony\\Component\\Console\\Output\\OutputInterface ``
79
+ instance.
80
80
81
81
By default, the console logger behaves like the
82
82
:doc: `Monolog's Console Handler </cookbook/logging/monolog_console >`.
@@ -105,4 +105,4 @@ constructor::
105
105
);
106
106
$logger = new ConsoleLogger($output, array(), $formatLevelMap);
107
107
108
- .. _PSR-3 : http://www.php-fig.org/psr/psr-3/
108
+ .. _PSR-3 : http://www.php-fig.org/psr/psr-3/
0 commit comments