From f2a0b31a20c6de8e74b1c20b47e3360b04b4cce5 Mon Sep 17 00:00:00 2001 From: Christian Kruse Date: Wed, 22 Jan 2014 14:30:24 +0100 Subject: [PATCH] more log format fixes --- repmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repmgr.c b/repmgr.c index 8631beec..32ada981 100644 --- a/repmgr.c +++ b/repmgr.c @@ -1845,7 +1845,7 @@ test_ssh_connection(char *host, char *remote_user) else maxlen_snprintf(script, "ssh -o Batchmode=yes %s %s -l %s %s", options.ssh_options, host, remote_user, TRUEBIN_PATH); - log_debug(_("command is: %s"), script); + log_debug(_("command is: %s\n"), script); r = system(script); if (r != 0) log_info(_("Can not connect to the remote host (%s)\n"), host);