Browse Source

BatcaveClient: use default logger

Helge Jung 9 years ago
parent
commit
76c707f1b5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/batcave/client.py

+ 1 - 1
modules/batcave/client.py

@@ -11,7 +11,7 @@ class BatcaveClient(object):
         assert url.endswith("/"), "BATCAVE URL must end with slash."
 
         self.base_url = url
-        self.logger = logging.getLogger('BATCAVE')
+        self.logger = logging.getLogger()
 
     def __load_response(self, url, error_context):
         raw_data = None