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:
Tim Abbott 2013-01-22 17:16:56 -05:00
parent f53e31e118
commit 72af050b32
1 changed files with 4 additions and 0 deletions

View File

@ -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)