Merge "Set the log level to debug for loading extensions"

This commit is contained in:
Jenkins 2014-04-09 09:03:52 +00:00 committed by Gerrit Code Review
commit 661fc106f6

View File

@ -544,7 +544,7 @@ class ExtensionManager(object):
# Neutron Servers
for f in sorted(os.listdir(path)):
try:
LOG.info(_('Loading extension file: %s'), f)
LOG.debug(_('Loading extension file: %s'), f)
mod_name, file_ext = os.path.splitext(os.path.split(f)[-1])
ext_path = os.path.join(path, f)
if file_ext.lower() == '.py' and not mod_name.startswith('_'):