mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 07:06:30 +00:00
Strip trailing \n from various log messages
This commit is contained in:
2
config.c
2
config.c
@@ -476,7 +476,7 @@ _parse_config(t_configuration_options *options, ItemList *error_list, ItemList *
|
||||
else
|
||||
{
|
||||
known_parameter = false;
|
||||
log_warning(_("%s/%s: unknown name/value pair provided; ignoring\n"), name, value);
|
||||
log_warning(_("%s/%s: unknown name/value pair provided; ignoring"), name, value);
|
||||
}
|
||||
/*
|
||||
* Raise an error if a known parameter is provided with an empty value.
|
||||
|
||||
@@ -2073,7 +2073,7 @@ create_recovery_file(const char *data_dir, t_conninfo_param_list *recovery_conni
|
||||
return false;
|
||||
}
|
||||
|
||||
log_debug("create_recovery_file(): creating \"%s\"...\n",
|
||||
log_debug("create_recovery_file(): creating \"%s\"...",
|
||||
recovery_file_path);
|
||||
|
||||
/* standby_mode = 'on' */
|
||||
|
||||
Reference in New Issue
Block a user