From 432590550d745eb1eda49ac12d2f8a3dca01111d Mon Sep 17 00:00:00 2001 From: Dana Powers Date: Mon, 8 Jun 2015 23:05:55 -0700 Subject: Reduce log chatter in tests (only debug kafka.conn in test_conn) --- test/testutil.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/testutil.py') diff --git a/test/testutil.py b/test/testutil.py index 99d8d01..3a1d2ba 100644 --- a/test/testutil.py +++ b/test/testutil.py @@ -113,3 +113,8 @@ class Timer(object): self.interval = self.end - self.start logging.basicConfig(level=logging.DEBUG) +logging.getLogger('test.fixtures').setLevel(logging.ERROR) +logging.getLogger('test.service').setLevel(logging.ERROR) + +# kafka.conn debug logging is verbose, disable in tests by default +logging.getLogger('kafka.conn').setLevel(logging.INFO) -- cgit v1.2.1