From dfe57d2406a8b5780562a1b53c1f198dac47ca74 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Wed, 23 Jan 2019 17:15:07 +0900 Subject: [PATCH] "node rejoin": log pg_rewind command as DETAIL rather than DEBUG --- repmgr-action-node.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repmgr-action-node.c b/repmgr-action-node.c index bd2166eb..05a28800 100644 --- a/repmgr-action-node.c +++ b/repmgr-action-node.c @@ -2341,8 +2341,8 @@ do_node_rejoin(void) else { log_notice(_("executing pg_rewind")); - log_debug("pg_rewind command is:\n %s", - command.data); + log_detail(_("pg_rewind command is \"%s\""), + command.data); initPQExpBuffer(&command_output);