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 6bb829c commit e63c5b9Copy full SHA for e63c5b9
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