diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-29 13:20:09 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-29 13:20:09 -0700 |
commit | b760f719450d597421e519d685b46481e8ff86fe (patch) | |
tree | 86cf02164fea64cd2e5513c09e7229ea6836770c /cloudinit | |
parent | c4c4ec1bb531bc19efd0b1c0b3d348be3ecb816d (diff) | |
download | vyos-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')
-rw-r--r-- | cloudinit/helpers.py | 3 |
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: |