diff --git a/neutron/api/extensions.py b/neutron/api/extensions.py index 4369c2135c..01ef5c475c 100644 --- a/neutron/api/extensions.py +++ b/neutron/api/extensions.py @@ -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('_'):