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
This commit is contained in:
Sean Dague 2014-09-30 17:05:50 -04:00
parent 89cdc4b623
commit 3db753937d
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@
"""Common logging for all ER efforts"""
import logging
import logging.config
import os
CONFIGURED = False