diff options
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/helpers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/helpers.py b/cloudinit/helpers.py index 09686340..21d203db 100644 --- a/cloudinit/helpers.py +++ b/cloudinit/helpers.py @@ -155,8 +155,8 @@ 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 with args %s using lock %s (%s)", + functor, args, util.obj_name(lk), lk) if isinstance(args, (dict)): results = functor(**args) else: |