From 9cc771f44521a3069481b4d523253b793a1b80f2 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Mon, 14 Mar 2011 17:28:05 +0100 Subject: [PATCH] remove useless debug messages --- weboob/core/modules.py | 2 -- 1 file changed, 2 deletions(-) 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