Reduce log level for extensions not being supported

Some in-tree extensions may only work if their respective service
plugin is loaded. This should not be treated at warning level, as
the configuration may be intended.

Change-Id: I898b8958c944af025a880dc95d5d40f28039b5f3
This commit is contained in:
Armando Migliaccio
2016-09-20 16:12:04 -07:00
parent d56358ffcb
commit 0db052d218

View File

@@ -646,9 +646,9 @@ class PluginAwareExtensionManager(ExtensionManager):
alias = extension.get_alias()
supports_extension = alias in self.get_supported_extension_aliases()
if not supports_extension:
LOG.warning(_LW("Extension %s not supported by any of loaded "
"plugins"),
alias)
LOG.info(_LI("Extension %s not supported by any of loaded "
"plugins"),
alias)
return supports_extension
def _plugins_implement_interface(self, extension):