From 0d66d85cbd8d1e848b6d44a59e7babad125c5833 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Tue, 16 Aug 2016 12:48:08 +0200 Subject: modify imports so that config get's imported after configuring the logging subsystem --- voctocore/voctocore.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'voctocore/voctocore.py') diff --git a/voctocore/voctocore.py b/voctocore/voctocore.py index fa712f7..1d04c4f 100755 --- a/voctocore/voctocore.py +++ b/voctocore/voctocore.py @@ -23,13 +23,16 @@ GObject.threads_init() # import local classes from lib.args import Args -from lib.pipeline import Pipeline -from lib.controlserver import ControlServer from lib.loghandler import LogHandler # main class class Voctocore(object): def __init__(self): + # import local which use the config or the logging system + # this is required, so that we can cnfigure logging, before reading the config + from lib.pipeline import Pipeline + from lib.controlserver import ControlServer + self.log = logging.getLogger('Voctocore') self.log.debug('creating GObject-MainLoop') self.mainloop = GObject.MainLoop() -- cgit v1.2.3