From 84466ecca5369c6855550d2cc486c468ab9dc1c4 Mon Sep 17 00:00:00 2001 From: Christian Kruse Date: Tue, 21 Jan 2014 15:23:20 +0100 Subject: [PATCH] `log_crit()` is more appropriate --- repmgrd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repmgrd.c b/repmgrd.c index 33115e04..df590f32 100644 --- a/repmgrd.c +++ b/repmgrd.c @@ -1327,7 +1327,7 @@ update_shared_memory(char *last_wal_standby_applied) else if (strcmp(PQgetvalue(res, 0, 0), "f") == 0) { /* this surely is more than enough reason to exit */ - log_warning(_("Cannot update this standby's shared memory, maybe shared_preload_libraries=repmgr_funcs is not set?\n")); + log_crit(_("Cannot update this standby's shared memory, maybe shared_preload_libraries=repmgr_funcs is not set?\n")); exit(ERR_BAD_CONFIG); }