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

This feature aims to separate the enabling of handlers based on the environment. ## Use Case : You have 3 servers on your project : dev, staging, and prod -...

I try to use ``` ``` error ``` In FileLoader.php line 174: [ERROR 1840] Element '{http://symfony.com/schema/dic/monolog}handler', attribute 'level': [facet 'enumeration'] The value '%env(APP_LOG_LEVEL)%' is not an element of the set...

Hi, first of all, thanks for this great piece of software! I'm trying to define a custom handler which should do some filtering on the `LogRecord` and then forward some...

In my commands, I want loggers to log into the file `console.log` Here is my `monolog.yaml` conf: ```yaml when@prod: monolog: handlers: console: type: stream level: debug path: "%kernel.logs_dir%/console.log" channels: console...

See https://github.com/Seldaek/monolog/releases/tag/3.6.0 / https://github.com/Seldaek/monolog/pull/1873 It would be neat I think if we could do `base_path: %kernel.project_dir%` on a handler and it would configure the line formatter for it with base...

Feature

I suggest adding a service implementing RestIntefrace by messanger worker in the integration to have independent buffers for each task. I think this should be in the default implementation https://symfony.com/doc/current/messenger.html#stateless-worker

Hello, I was playing with `#[WithMonologChannel]` attribute. Without reading the doc, I put it on the constructor parameter, because I thought it would work like `#[Target]`, `#[Autowire]`, ... attributes ```php...

Adds support for https://github.com/getsentry/sentry-php/pull/1199. ```yaml monolog: handlers: sentry: type: sentry hub_id: Sentry\State\HubInterface level: !php/const Monolog\Logger::ERROR sentry_breadcrumb: type: sentry_breadcrumb sentry_handler: sentry level: !php/const Monolog\Logger::INFO # or if you don't have Sentry...

Continuation of #455. ```yaml Foo\Bar\Log\Processors\FirstProcessor: tags: - { name: monolog.processor, channel: http } Foo\Bar\Log\Processors\SecondProcessor: tags: - { name: monolog.processor, channel: http, priority: -10 } # last Foo\Bar\Log\Processors\ThirdProcessor: tags: - {...

Feature

This PR adds support for the `topic` option in `TelegramBotHandler`, enabling the use of the Telegram message thread ID (`message_thread_id`). This unique identifier targets specific message threads (topics) within forum...