File bsc#1174696-0002-Log-libpe_status-downgrade-the-message-about-the-mea.patch of Package pacemaker.26926
From f1f78f5180ae3bb34b0211730e484ce7b7ee9aff Mon Sep 17 00:00:00 2001
From: "Gao,Yan" <ygao@suse.com>
Date: Fri, 14 Aug 2020 12:33:10 +0200
Subject: [PATCH 1/3] Log: libpe_status: downgrade the message about the
meaning of `have-watchdog=true` to info
The message actually only indicates there's the setting
`have-watchdog=true` and describes the meaning of it. It's rather
confusing to constantly appear if normal SBD with disk is used.
On the other hand, we should improve the documentation about the cluster
options related to watchdog.
---
lib/pengine/unpack.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: pacemaker-2.0.4+20200616.2deceaa3a/lib/pengine/unpack.c
===================================================================
--- pacemaker-2.0.4+20200616.2deceaa3a.orig/lib/pengine/unpack.c
+++ pacemaker-2.0.4+20200616.2deceaa3a/lib/pengine/unpack.c
@@ -202,8 +202,8 @@ unpack_config(xmlNode * config, pe_worki
value = pe_pref(data_set->config_hash, XML_ATTR_HAVE_WATCHDOG);
if (value && crm_is_true(value)) {
- crm_notice("Watchdog will be used via SBD if fencing is required "
- "and stonith-watchdog-timeout is nonzero");
+ crm_info("Watchdog-based self-fencing will be performed via SBD if "
+ "fencing is required and stonith-watchdog-timeout is nonzero");
set_bit(data_set->flags, pe_flag_have_stonith_resource);
}