summaryrefslogtreecommitdiff
path: root/cloudinit/helpers.py
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2012-06-29 13:20:09 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2012-06-29 13:20:09 -0700
commitb760f719450d597421e519d685b46481e8ff86fe (patch)
tree86cf02164fea64cd2e5513c09e7229ea6836770c /cloudinit/helpers.py
parentc4c4ec1bb531bc19efd0b1c0b3d348be3ecb816d (diff)
downloadvyos-cloud-init-b760f719450d597421e519d685b46481e8ff86fe.tar.gz
vyos-cloud-init-b760f719450d597421e519d685b46481e8ff86fe.zip
Don't show the args but show the name and lock that is being used.
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: