try:
req = cfg.worker_q.get(True, 5)
log_debug(
- "Running method: %s with args %s" %
- (str(req.method), str(req.arguments)))
+ "Method start: %s with args %s (callback = %s)" %
+ (str(req.method), str(req.arguments), str(req.cb)))
req.run_cmd()
- log_debug("Method complete ")
+ log_debug("Method complete: %s" % str(req.method))
except queue.Empty:
pass
except Exception:
# Using a thread to process requests, we cannot hang the dbus library
# thread that is handling the dbus interface
- thread_list.append(threading.Thread(target=process_request,
- name='process_request'))
+ thread_list.append(
+ threading.Thread(target=process_request, name='process_request'))
# Have a single thread handling updating lvm and the dbus model so we
# don't have multiple threads doing this as the same time
rc = cfg.load(log=False)
if rc != 0:
- utils.log_debug('Manager.Refresh - exit %d' % (rc),
+ utils.log_debug('Manager.Refresh - exit %d %d' % (rc, lc),
'bg_black', 'fg_light_red')
else:
- utils.log_debug('Manager.Refresh - exit %d' % (rc))
+ utils.log_debug('Manager.Refresh - exit %d %d' % (rc, lc))
return rc + lc
@dbus.service.method(