diff --git a/heat/engine/check_resource.py b/heat/engine/check_resource.py index 3e2045bb3f..d04a6f5db1 100644 --- a/heat/engine/check_resource.py +++ b/heat/engine/check_resource.py @@ -87,9 +87,9 @@ class CheckResource(object): return True elif (rs_obj.engine_id is None and rs_obj.current_template_id == prev_template_id): - LOG.debug('Resource id=%d stale; retrying check') + LOG.debug('Resource id=%d stale; retrying check', rsrc.id) return True - LOG.debug('Resource id=%d modified by another traversal') + LOG.debug('Resource id=%d modified by another traversal', rsrc.id) return False def _trigger_rollback(self, stack):