]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Set the log level to debug for loading extensions
authorPradeep Kilambi <pkilambi@cisco.com>
Mon, 7 Apr 2014 20:48:30 +0000 (16:48 -0400)
committerPradeep Kilambi <pkilambi@cisco.com>
Mon, 7 Apr 2014 21:55:31 +0000 (17:55 -0400)
Setting the log level to debug instead of info
for load extension file.

Change-Id: Ia2322a5d62381f15b4bf4e0bb7120813be985786

neutron/api/extensions.py

index 4369c2135c490a8680f2f8809f27e8e66202d516..01ef5c475c4c85619b9d14abbfd512cd1cc0262a 100644 (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('_'):