From b760f719450d597421e519d685b46481e8ff86fe Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Fri, 29 Jun 2012 13:20:09 -0700 Subject: Don't show the args but show the name and lock that is being used. --- cloudinit/helpers.py | 3 +-- 1 file changed, 1 insertion(+), 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: -- cgit v1.2.3