From ceecea991bd4e5209fe4a9fe82b543648634551d Mon Sep 17 00:00:00 2001 From: Amrith Kumar Date: Thu, 7 Aug 2014 13:30:10 -0400 Subject: [PATCH] recent audit log change broke this LOG.debug message My recent change to this file as part of the audit logging changes (b668e85c) introduced this error. Change-Id: If540d94432835f7f28817b00a39c5c704cb71813 Closes-Bug: #1354107 --- trove/guestagent/volume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trove/guestagent/volume.py b/trove/guestagent/volume.py index cb38bd9de1..4b9cf48831 100644 --- a/trove/guestagent/volume.py +++ b/trove/guestagent/volume.py @@ -90,7 +90,7 @@ class VolumeDevice(object): cmd = "sudo mkfs -t %s %s %s" % (volume_fstype, format_options, self.device_path) volume_format_timeout = CONF.volume_format_timeout - LOG.debug("Formatting %s. Executing: %s.", + LOG.debug("Formatting %s. Executing: %s." % (self.device_path, cmd)) child = pexpect.spawn(cmd, timeout=volume_format_timeout) # child.expect("(y,n)")