Remove log message when not configuration is found

This commit is contained in:
Alexander Schranz 2021-04-30 20:18:19 +02:00 committed by GitHub
parent 8ff0a3e6f2
commit 20c03b5c87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,10 +77,6 @@ class ConfigBuilderCacheWarmer implements CacheWarmerInterface
} }
if (!$configuration) { if (!$configuration) {
if ($this->logger) {
$this->logger->info('No configuration found for extension {extensionClass}.', ['extensionClass' => \get_class($extension)]);
}
return; return;
} }