diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-03-13 09:25:25 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-03-13 09:31:18 -0700 |
commit | 376e3659a81406dec27660863bc211165f58080a (patch) | |
tree | 3ea8525aba914b2f55ff421d71c7ea75e9739857 /test/testutil.py | |
parent | 7db5adf1b553ec2d358dad29dc7be676a468fca1 (diff) | |
download | kafka-python-testing.tar.gz |
Move logging format config to tox.ini to avoid duplicate log capture in pytest outputtesting
Diffstat (limited to 'test/testutil.py')
-rw-r--r-- | test/testutil.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/testutil.py b/test/testutil.py index eef8a01..323780c 100644 --- a/test/testutil.py +++ b/test/testutil.py @@ -143,7 +143,5 @@ class Timer(object): self.end = time.time() self.interval = self.end - self.start -logging.basicConfig(level=logging.DEBUG, - format="%(asctime)-15s %(name)-20s %(levelname)-10s %(message)s") logging.getLogger('test.fixtures').setLevel(logging.ERROR) logging.getLogger('test.service').setLevel(logging.ERROR) |