From 3db753937d159803da4dd8baf2b9323f61dbcc69 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Tue, 30 Sep 2014 17:05:50 -0400 Subject: [PATCH] import logging.config importing python logging does not automatically bring in logging.config, which was not realized during a refactor. This patch will get us working, additional unit tests will come in a follow up patch. Change-Id: I2be6fbd9a17357f0e86a4e18921aa5c672e0c546 --- elastic_recheck/log.py | 1 + 1 file changed, 1 insertion(+) diff --git a/elastic_recheck/log.py b/elastic_recheck/log.py index 1044c239..457c1541 100644 --- a/elastic_recheck/log.py +++ b/elastic_recheck/log.py @@ -17,6 +17,7 @@ """Common logging for all ER efforts""" import logging +import logging.config import os CONFIGURED = False