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 9da4359 commit 2029e50Copy full SHA for 2029e50
DependencyInjection/Configuration.php
@@ -1073,7 +1073,8 @@ private function addChannelsSection(ArrayNodeDefinition $handerNode)
1073
return null;
1074
}
1075
1076
- return ['type' => $isExclusive ? 'exclusive' : 'inclusive', 'elements' => $elements];
+ // de-duplicating $elements here in case the handlers are redefined, see https://github.com/symfony/monolog-bundle/issues/433
1077
+ return ['type' => $isExclusive ? 'exclusive' : 'inclusive', 'elements' => array_unique($elements)];
1078
})
1079
->end()
1080
->children()
0 commit comments