monolog-bundle
monolog-bundle copied to clipboard
Symfony Monolog Bundle
If I call another console command in a running console command, the output is closed after the inner command returns. E.g. Run Messenge consumer which starts a console command. After...
Monolog already does it, as the request integration that comes with the default configuration of sentry. Disabling it fixes it. Maybe we should add a marker that says we could...
The SyslogUdpHandler constructor has a last parameter "rfc", default value is ["self::RFC5424"](https://github.com/Seldaek/monolog/blob/master/src/Monolog/Handler/SyslogUdpHandler.php#L47). However, the current Monolog Bundle implementation dos not allows to set another value like self::RFC3164. It will be...
Hi. I think some handlers are missing for the phpdoc in `MonologExtension.php`. At least the `FallbackGroupHandler`. But it was added in 2.0 and this bundle support both 1.x and 2.x....
I have come across an issue where when running a significant number of Behat scenarios (260 in my cases) throws a "too many open files error". It looks like this...
We have noticed an issue with the following configuration: ``` monolog: handlers: main: type: fingers_crossed action_level: error handler: nested nested: type: rotating_file path: '%kernel.logs_dir%/%kernel.environment%.log' level: debug max_files: 10 console: type:...
**Symfony version(s) affected**: 5.0.5 **Description** Processors implementing `\Monolog\Processor\ProcessorInterface` ignore handler/channel setting and are being invoked for every handler/channel. **How to reproduce** Can be reproduced with example from official documentation https://symfony.com/doc/current/reference/dic_tags.html#monolog-processor...
SwiftMailer handler's `to_email` config parameter is supposed to accept an array of email addresses. It works ok when the array is given literally, like: # config.yml handlers: email: type: 'swift_mailer'...
This fix https://github.com/symfony/monolog-bundle/issues/325 Is worthy to note two main things: 1) I have a failing test (regression?) that I just don't understand why is broken 2) I made all the...