Set the log level to debug for loading extensions

Setting the log level to debug instead of info
for load extension file.

Change-Id: Ia2322a5d62381f15b4bf4e0bb7120813be985786
This commit is contained in:
Pradeep Kilambi 2014-04-07 16:48:30 -04:00
parent 9009a2296b
commit 32b0ea0ecd

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('_'):