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
This commit is contained in:
Matthew Oliver 2014-04-17 09:36:08 +10:00
parent 96052bf27c
commit 2328b0ce0c

View File

@ -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