diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-07-25 12:12:47 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-07-25 12:12:47 +0100 |
commit | f16f0e169d30e6920b892ee772693199b16713fd (patch) | |
tree | 9830ef5657d05824faafaa6d290982d7b40df05c /tests/unittest.py | |
parent | Merge pull request #944 from matrix-org/rav/devices_returns_list (diff) | |
download | synapse-f16f0e169d30e6920b892ee772693199b16713fd.tar.xz |
Slightly saner logging for unittests
1. Give the handler used for logging in unit tests a formatter, so that the output is slightly more meaningful 2. Log some synapse.storage stuff, because it's useful.
Diffstat (limited to 'tests/unittest.py')
-rw-r--r-- | tests/unittest.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/tests/unittest.py b/tests/unittest.py index 5b22abfe74..38715972dd 100644 --- a/tests/unittest.py +++ b/tests/unittest.py @@ -17,13 +17,18 @@ from twisted.trial import unittest import logging - # logging doesn't have a "don't log anything at all EVARRRR setting, # but since the highest value is 50, 1000000 should do ;) NEVER = 1000000 -logging.getLogger().addHandler(logging.StreamHandler()) +handler = logging.StreamHandler() +handler.setFormatter(logging.Formatter( + "%(levelname)s:%(name)s:%(message)s [%(pathname)s:%(lineno)d]" +)) +logging.getLogger().addHandler(handler) logging.getLogger().setLevel(NEVER) +logging.getLogger("synapse.storage.SQL").setLevel(NEVER) +logging.getLogger("synapse.storage.txn").setLevel(NEVER) def around(target): @@ -70,8 +75,6 @@ class TestCase(unittest.TestCase): return ret logging.getLogger().setLevel(level) - # Don't set SQL logging - logging.getLogger("synapse.storage").setLevel(old_level) return orig() def assertObjectHasAttributes(self, attrs, obj): |