From ce12b56ee809d2a91d07d9a47ce4025274f82c3d Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sun, 10 Feb 2013 22:32:02 +0100 Subject: [PATCH] remove two old and useless debug messages --- weboob/core/bcall.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/weboob/core/bcall.py b/weboob/core/bcall.py index e283b03c..7a20ad9d 100644 --- a/weboob/core/bcall.py +++ b/weboob/core/bcall.py @@ -81,7 +81,6 @@ class BackendsCall(object): # Create jobs for each backend with self.mutex: for backend in backends: - self.logger.debug('Creating a new thread for %s' % backend) self.threads.append(Timer(0, self._caller, (backend, function, args, kwargs)).start()) if not backends: self.finish_event.set() @@ -101,7 +100,6 @@ class BackendsCall(object): self.response_event.set() def _caller(self, backend, function, args, kwargs): - self.logger.debug('%s: Thread created successfully' % backend) with backend: try: # Call method on backend