diff --git a/weboob/core/modules.py b/weboob/core/modules.py index 553565c7..adb5bcd5 100644 --- a/weboob/core/modules.py +++ b/weboob/core/modules.py @@ -117,9 +117,7 @@ class ModulesLoader(object): except ImportError: return for path in weboob.backends.__path__: - self.logger.debug( 'Backend path: %s' % path ) for root, dirs, files in os.walk(path): - self.logger.debug( 'Walking on %s' % root ) if os.path.dirname( root ) == path and '__init__.py' in files: s = os.path.basename( root ) yield s