mirror of https://github.com/zulip/zulip.git
tests: Don't log INFO level request log messages from test suite.
This ends up being really spammy and thus makes real warnings easy to miss. (imported from commit e95dbe69137cc962ed3dbcb60cf88757da2e8ea5)
This commit is contained in:
parent
f53e31e118
commit
72af050b32
|
@ -1,5 +1,6 @@
|
|||
from settings import *
|
||||
import os
|
||||
import logging
|
||||
|
||||
DATABASES["default"] = {"NAME": "zephyr/tests/zephyrdb.test",
|
||||
"ENGINE": "django.db.backends.sqlite3",
|
||||
|
@ -40,3 +41,6 @@ CACHES = { 'default': {
|
|||
'MAX_ENTRIES': 100000
|
||||
}
|
||||
} }
|
||||
|
||||
requests_logger = logging.getLogger('humbug.requests')
|
||||
requests_logger.setLevel(logging.WARNING)
|
||||
|
|
Loading…
Reference in New Issue