소스 검색

BatcaveClient: use default logger

Helge Jung 9 년 전
부모
커밋
76c707f1b5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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