10000 [Config ]Remove log message when no configuration is found in ConfigBuilder by alexander-schranz · Pull Request #41009 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Config ]Remove log message when no configuration is found in ConfigBuilder #41009

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
May 1, 2021
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
8000
Diff view
Diff view
Remove log message when not configuration is found
  • Loading branch information
alexander-schranz authored Apr 30, 2021
commit 20c03b5c8761d19f71be276ee7b8bbc900e84d07
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ private function dumpExtension(ExtensionInterface $extension, ConfigBuilderGener
}

if (!$configuration) {
if ($this->logger) {
$this->logger->info('No configuration found for extension {extensionClass}.', ['extensionClass' => \get_class($extension)]);
}

return;
}

Expand Down
0