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

Symfony Monolog Bundle

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

From https://github.com/symfony/recipes/issues/1111 & https://github.com/Seldaek/monolog/pull/1689 I found out about the (newish) syslog formatter that can be viewed nicely with lnav. While trying to use it, I see there is no service...

So that the order in which the processors are used by monolog can be determined. Example config: ```yaml Foo\Bar\Log\Processors\FirstProcessor: tags: - { name: monolog.processor, channel: http } Foo\Bar\Log\Processors\SecondProcessor: tags: -...

This configuration for monolog stops generation of logs in var/log/ when adding excluded_http_codes: [404]. When we disable it, it works. ``` monolog: handlers: main: type: fingers_crossed path: '%kernel.logs_dir%/%kernel.environment%.log' level: warning...

Bug

The default prod settings since about symfony 5 in monolog.yaml are these: ``` when@prod: monolog: handlers: main: type: fingers_crossed action_level: error handler: nested excluded_http_codes: [404, 405] buffer_size: 50 # How...

This PR adds support for additional parameters to the native mailer, as describe in https://www.php.net/manual/en/function.mail.php > The additional_params parameter can be used to pass additional flags as command line options...

The `SlackRecord` used by the Slack and SlackWebhook handlers has a constructor parameter to exclude certain fields from being sent to Slack. This is a great way to log exceptions...

I have a health check which floods my logs and would like to exclude but it doesn't exclude these paths `/ping` and `/health` for `200` status code: ``` monolog: handlers:...

When configuring multiple handlers, one annoying problem I often come across is having to add every channel that is meant to be used with a specific handler to all handlers...

Following https://github.com/symfony/monolog-bundle/pull/446 The console logger have a map of verbosity => log level that should be configurable with env vars. Disadvantage: in case of invalid log level, the exception cannot...

After adding sentry to symfony project, many deprecated errors appeared. One of them: `User Deprecated: The "Monolog\Logger" class is considered final. It may change without further notice as of its...