Merge "Remove log translations"
diff --git a/common/test.py b/common/test.py
index e387f3e..f52cda3 100644
--- a/common/test.py
+++ b/common/test.py
@@ -119,7 +119,7 @@
try:
linux_client.validate_authentication()
except exceptions.SSHTimeout:
- LOG.exception('ssh connection to %s failed' % ip)
+ LOG.exception('ssh connection to %s failed', ip)
raise
return linux_client
@@ -647,7 +647,7 @@
rsrc_events = self.client.events.list(stack_identifier,
resource_name=rsrc_name)
except heat_exceptions.HTTPNotFound:
- LOG.debug("No events yet found for %s" % rsrc_name)
+ LOG.debug("No events yet found for %s", rsrc_name)
else:
matched = [e for e in rsrc_events
if e.resource_status_reason == reason]