How to Log Messages to different Files
The Symfony Framework organizes log messages into channels. By default, there
are several channels, including doctrine
, event
, security
, request
and more. The channel is printed in the log message and can also be used
to direct different channels to different places/files.
By default, Symfony logs every message into a single file (regardless of the channel).
Note
Each channel corresponds to a different logger service (monolog.logger.XXX
)
Use the php bin/console debug:container monolog
command to see a full
list of services and learn how to autowire monolog channels.
Switching a Channel to a different Handler
Now, suppose you want to log the security
channel to a different file.
To do this, create a new handler and configure it to log only messages
from the security
channel. The following example does that only in the
prod
configuration environment:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# config/packages/monolog.yaml
when@prod:
monolog:
handlers:
security:
# log all messages (since debug is the lowest level)
level: debug
type: stream
path: '%kernel.logs_dir%/security.log'
channels: [security]
# an example of *not* logging security channel messages for this handler
main:
# ...
# channels: ['!security']
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<!-- config/packages/prod/monolog.xml-->
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:monolog="http://symfony.com/schema/dic/monolog"
xsi:schemaLocation="http://symfony.com/schema/dic/services
https://symfony.com/schema/dic/services/services-1.0.xsd
http://symfony.com/schema/dic/monolog
https://symfony.com/schema/dic/monolog/monolog-1.0.xsd">
<when env="prod">
<monolog:config>
<monolog:handler name="security" type="stream" path="%kernel.logs_dir%/security.log">
<monolog:channels>
<monolog:channel>security</monolog:channel>
</monolog:channels>
</monolog:handler>
</monolog:config>
</when>
<monolog:handler name="main" type="stream" path="%kernel.logs_dir%/main.log">
<!-- ... -->
<monolog:channels>
<monolog:channel>!security</monolog:channel>
</monolog:channels>
</monolog:handler>
</monolog:config>
</container>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// config/packages/prod/monolog.php
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symfony\Config\MonologConfig;
return static function (MonologConfig $monolog, ContainerConfigurator $container) {
if ('prod' === $container->env()) {
$monolog->handler('security')
->type('stream')
->path(param('kernel.logs_dir') . \DIRECTORY_SEPARATOR . 'security.log')
->channels()->elements(['security']);
$monolog->handler('main')
// ...
->channels()->elements(['!security']);
}
};
Caution
The channels
configuration only works for top-level handlers. Handlers
that are nested inside a group, buffer, filter, fingers crossed or other
such handler will ignore this configuration and will process every message
passed to them.
You can specify the configuration in different ways:
1 2 3 4 5 6 7
channels: ~ # Include all the channels
channels: foo # Include only channel 'foo'
channels: '!foo' # Include all channels, except 'foo'
channels: [foo, bar] # Include only channels 'foo' and 'bar'
channels: ['!foo', '!bar'] # Include all channels, except 'foo' and 'bar'
Creating your own Channel
You can change the channel Monolog logs to one service at a time. This is done either via the configuration below or by tagging your service with monolog.logger and specifying which channel the service should log to. With the tag, the logger that is injected into that service is preconfigured to use the channel you've specified.
Configure Additional Channels without Tagged Services
You can also configure additional channels without the need to tag your services:
1 2 3
# config/packages/monolog.yaml
monolog:
channels: ['foo', 'bar', 'foo_bar']
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<!-- config/packages/monolog.xml -->
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:monolog="http://symfony.com/schema/dic/monolog"
xsi:schemaLocation="http://symfony.com/schema/dic/services
https://symfony.com/schema/dic/services/services-1.0.xsd
http://symfony.com/schema/dic/monolog
https://symfony.com/schema/dic/monolog/monolog-1.0.xsd">
<monolog:config>
<monolog:channel>foo</monolog:channel>
<monolog:channel>bar</monolog:channel>
<monolog:channel>foo_bar</monolog:channel>
</monolog:config>
</container>
1 2 3 4 5 6
// config/packages/monolog.php
use Symfony\Config\MonologConfig;
return static function (MonologConfig $monolog) {
$monolog->channels(['foo', 'bar', 'foo_bar']);
};
Symfony automatically registers one service per channel (in this example, the
channel foo
creates a service called monolog.logger.foo
). In order to
inject this service into others, you must update the service configuration to
choose the specific service to inject.
How to Autowire Logger Channels
Starting from MonologBundle 3.5 you can autowire different Monolog channels
by type-hinting your service arguments with the following syntax:
Psr\Log\LoggerInterface $<camelCased channel name> + Logger
. The <channel>
must have been predefined in your Monolog configuration.
For example to inject the service related to the foo_bar
logger channel,
change your constructor like this:
1 2 3 4 5
- public function __construct(LoggerInterface $logger)
+ public function __construct(LoggerInterface $fooBarLogger)
{
$this->logger = $fooBarLogger;
}
Configure Logger Channels with Attributes
Starting from Monolog 3.5 you can also configure the logger channel
by using the #[WithMonologChannel]
attribute directly on your service
class:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// src/Service/MyFixtureService.php
namespace App\Service;
use Monolog\Attribute\WithMonologChannel;
use Psr\Log\LoggerInterface;
use Symfony\Bridge\Monolog\Logger;
#[WithMonologChannel('fixtures')]
class MyFixtureService
{
public function __construct(LoggerInterface $logger)
{
// ...
}
}
This way you can avoid declaring your service manually to use a specific channel.
3.5
The #[WithMonologChannel]
attribute was introduced in Monolog 3.5.0.