From 2328b0ce0cddc7e56b1ed9b9bb1b3158b108f6ae Mon Sep 17 00:00:00 2001 From: Matthew Oliver Date: Thu, 17 Apr 2014 09:36:08 +1000 Subject: [PATCH] Add the debug_log file to setup_logging The debug_log file from the configuration was not being passed to the setup_logging function. Causing no logs to be written to to the log file. This change, passes it file path to setup_logging. Change-Id: Id84a6efdbd7ced98cb7774d09cf7068f988bf16e --- turbo_hipster/worker_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbo_hipster/worker_server.py b/turbo_hipster/worker_server.py index 35c7882..fae193d 100644 --- a/turbo_hipster/worker_server.py +++ b/turbo_hipster/worker_server.py @@ -42,7 +42,7 @@ class Server(threading.Thread): # Python logging output file. self.debug_log = self.config['debug_log'] - self.setup_logging() + self.setup_logging(self.debug_log) # Config init self.zuul_manager = None