mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-21 17:15:38 +03:00
Define a (class) decorator for easily setting a DEBUG logging level on a TestCase
This commit is contained in:
parent
ca8349a897
commit
33c4dd4c2d
1 changed files with 5 additions and 0 deletions
|
@ -49,3 +49,8 @@ class TestCase(unittest.TestCase):
|
|||
logging.getLogger().setLevel(level)
|
||||
return orig_setUp()
|
||||
self.setUp = setUp
|
||||
|
||||
|
||||
def DEBUG(target):
|
||||
target.loglevel = logging.DEBUG
|
||||
return target
|
||||
|
|
Loading…
Reference in a new issue