8000 [FrameworkBundle] Add missing monolog channel tag for messenger services by rmikalkenas · Pull Request #49843 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[FrameworkBundle] Add missing monolog channel tag for messenger services #49843

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[FrameworkBundle] Add missing monolog channel tag for messenger services
  • Loading branch information
Rokas Mikalkėnas committed Mar 28, 2023
commit 290c88e29d549f7ec14c4ae9398c58bcdf53b912
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
->args([
service('logger')->ignoreOnInvalid(),
])
->tag('monolog.logger', ['channel' => 'messenger'])

->set('messenger.transport.beanstalkd.factory', BeanstalkdTransportFactory::class)

Expand Down Expand Up @@ -197,6 +198,7 @@
service('logger')->ignoreOnInvalid(),
])
->tag('kernel.event_subscriber')
->tag('monolog.logger', ['channel' => 'messenger'])

->set('messenger.listener.stop_worker_on_stop_exception_listener', StopWorkerOnCustomStopExceptionListener::class)
->tag('kernel.event_subscriber')
Expand Down
0