Merge pull request #5459 from edx/zoldak/quiet-stevedore

Quiet stevedore.extension logging in bok-choy tests
This commit is contained in:
Jesse Zoldak
2014-10-02 09:24:21 -04:00

View File

@@ -4,6 +4,7 @@ import logging
LOG_OVERRIDES = [
('requests.packages.urllib3.connectionpool', logging.ERROR),
('django.db.backends', logging.ERROR),
('stevedore.extension', logging.ERROR),
]
for log_name, log_level in LOG_OVERRIDES: