We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63a64ea commit 3967edaCopy full SHA for 3967eda
src/Symfony/Component/Message/DependencyInjection/MessagePass.php
@@ -47,6 +47,10 @@ public function process(ContainerBuilder $container)
47
return;
48
}
49
50
+ if (!$container->getParameter('kernel.debug') || !$container->hasDefinition('logger')) {
51
+ $container->removeDefinition('message.middleware.debug.logging');
52
+ }
53
+
54
$this->registerReceivers($container);
55
$this->registerHandlers($container);
56
0 commit comments