From 4c799192a9d3132da0138e1adb640a9ab7e191b0 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Wed, 22 Jul 2015 14:15:57 -0400 Subject: improve log message --- cloudinit/config/cc_ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cloudinit/config/cc_ssh.py') diff --git a/cloudinit/config/cc_ssh.py b/cloudinit/config/cc_ssh.py index 7fb13333..c2a7af72 100644 --- a/cloudinit/config/cc_ssh.py +++ b/cloudinit/config/cc_ssh.py @@ -101,7 +101,7 @@ def handle(_name, cfg, cloud, log, _args): except util.ProcessExecutionError as e: err = util.decode_binary(e.stderr).lower() if e.exit_code == 1 and err.lower().startswith("unknown key"): - log.debug("unknown key type %s" % keytype) + log.debug("ssh-keygen: unknown key type '%s'", keytype) else: util.logexc(log, "Failed generating key type %s to " "file %s", keytype, keyfile) -- cgit v1.2.3