Don't show the args but show the name and lock that is being used.

This commit is contained in:
Joshua Harlow
2012-06-29 13:20:09 -07:00
parent d8cffa173f
commit fc46a91dfa

View File

@@ -168,8 +168,7 @@ class Runners(object):
if not lk:
raise LockFailure("Failed to acquire lock for %s" % name)
else:
LOG.debug("Running %s with args %s using lock (%s)",
functor, args, lk)
LOG.debug("Running %s using lock (%s)", name, lk)
if isinstance(args, (dict)):
results = functor(**args)
else: