This commit is contained in:
Guillaume Ayoub 2013-07-12 15:25:57 +02:00
parent 18f5c334f1
commit c4f2587fd9
3 changed files with 21 additions and 3 deletions

View file

@ -36,10 +36,10 @@ LOGGER = logging.getLogger()
def start():
"""Start the logging according to the configuration."""
filename = os.path.expanduser(config.get("logging", "config"))
debug = config.getboolean("logging", "debug")
"""Start the logging according to the configuration."""
if os.path.exists(filename):
# Configuration taken from file
logging.config.fileConfig(filename)