monolog-bundle icon indicating copy to clipboard operation
monolog-bundle copied to clipboard

Symfony Monolog Bundle

Results 62 monolog-bundle issues
Sort by recently updated
recently updated
newest added

Monolog just merged Syslog formatter which should be wired here. https://github.com/Seldaek/monolog/issues/1594

While trying to improve some configuration blocks in Symfony docs, I found out that it was not possible to use constants for the verbosity levels of the console handler. I...

After upgrading symfony 5.4 to 6.x i always get : `NOTICE: PHP message: PHP Fatal error: Uncaught RuntimeException: The UdpSocket to ..XX.. has been closed and can not be written...

I am following instructions here https://symfony.com/doc/current/logging/monolog_email.html to email critical errors. This by itself works just fine. But when I add a custom log handler, any error that triggers the mailer...

Hello, i have to handle log and use some tools like messenger system, doctrine, etc. When i handle log with an handler, it produce log (through messenger, doctrine, etc.), and...

I am using a monolog service handler labeled `db` in my `dev` environment, but not in `prod`. When I try to run the app or a command in the `prod`...

Hi, I tried the create mail notifications that sending on application fail `50x`, so I want to send this notification to 2 different developers and I defined the environment value...

This is not working in `monolog.yaml`: ```` monolog: handlers: elk: type: elasticsearch formatter: elastica_formatter level: INFO elasticsearch: transport: https host: "%env(ELK_HOST)%" port: 9243 user: "%env(ELK_USER)%" password: "%env(ELK_PASSWORD)%" ```` The error...

Add configuration : `exclude_fields` => Dot separated list of fields to exclude from slack message. E.g. ['context.field1', 'extra.field2'] cf. https://github.com/Seldaek/monolog/blob/main/src/Monolog/Handler/SlackHandler.php

I am trying to come up with sane default way to configure monolog in our applications and came up with these conditions: 1. Application MUST always log application specific >=...