Fix debug output for cinder-volume-usage-audit
Fixes variables not being included in log output. Change-Id: Ic403166b88b1ba549fe7a7b0cd95d7cbb7a0de4c
This commit is contained in:
parent
ae84ce085f
commit
0259ea0438
@ -103,7 +103,7 @@ def main():
|
||||
volumes = db.volume_get_active_by_window(admin_context,
|
||||
begin,
|
||||
end)
|
||||
LOG.debug("Found %d volumes"), len(volumes)
|
||||
LOG.debug("Found %d volumes", len(volumes))
|
||||
for volume_ref in volumes:
|
||||
try:
|
||||
LOG.debug("Send exists notification for <volume_id: "
|
||||
@ -174,7 +174,7 @@ def main():
|
||||
|
||||
snapshots = objects.SnapshotList.get_active_by_window(admin_context,
|
||||
begin, end)
|
||||
LOG.debug("Found %d snapshots"), len(snapshots)
|
||||
LOG.debug("Found %d snapshots", len(snapshots))
|
||||
for snapshot_ref in snapshots:
|
||||
try:
|
||||
LOG.debug("Send notification for <snapshot_id: %(snapshot_id)s> "
|
||||
|
Loading…
Reference in New Issue
Block a user