File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Symfony comes with two minimalist `PSR-3 `_ loggers: :class: `Symfony\\ Component\\ HttpKernel\\ Log\\ Logger `
5
5
for the HTTP context and :class: `Symfony\\ Component\\ Console\\ Logger\\ ConsoleLogger ` for the
6
- CLI context.
7
- In conformance with `the twelve-factor app methodology `_, they send messages starting from the
8
- ``WARNING `` level to `stderr `_.
6
+ CLI context. In conformance with `the twelve-factor app methodology `_, they send messages
7
+ starting from the ``WARNING `` level to `stderr `_.
9
8
10
9
The minimal log level can be changed by setting the ``SHELL_VERBOSITY `` environment variable:
11
10
@@ -30,7 +29,7 @@ For more information about ``ConsoleLogger``, see :doc:`/components/console/logg
30
29
Logging a Message
31
30
-----------------
32
31
33
- To log a message using the `` logger `` service , inject the default logger in your controller or service::
32
+ To log a message, inject the default logger in your controller or service::
34
33
35
34
use Psr\Log\LoggerInterface;
36
35
// ...
@@ -62,7 +61,7 @@ Adding placeholders to log messages is recommended because:
62
61
* It's better for security, because escaping can then be done by the
63
62
implementation in a context-aware fashion.
64
63
65
- The logger implementations has different methods for different logging levels/priorities.
64
+ The `` logger `` service has different methods for different logging levels/priorities.
66
65
See `LoggerInterface `_ for a list of all of the methods on the logger.
67
66
68
67
Monolog
You can’t perform that action at this time.
0 commit comments