summaryrefslogtreecommitdiff
path: root/cloudinit/helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit/helpers.py')
-rw-r--r--cloudinit/helpers.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/helpers.py b/cloudinit/helpers.py
index 0f86285f..15036a50 100644
--- a/cloudinit/helpers.py
+++ b/cloudinit/helpers.py
@@ -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: