Fix typo in debug logging

Change-Id: I562b0c13c660bd65f562d3e5003c8f0e8c6a7a04
This commit is contained in:
Joshua Hesketh 2013-11-20 16:06:06 +11:00
parent 8d0f241ead
commit fc44906a7b

View File

@ -115,12 +115,12 @@ class ZuulClient(threading.Thread):
self.register_functions()
def register_functions(self):
self.debug.log("Register functions with gearman")
self.log.debug("Register functions with gearman")
for function_name, plugin in self.functions.items():
self.gearman_worker.registerFunction(function_name)
def add_function(self, function_name, plugin):
self.debug.log("Add function, %s, to list" % function_name)
self.log.debug("Add function, %s, to list" % function_name)
self.functions[function_name] = plugin
def stop(self):