OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=112
42 lines
1.9 KiB
Diff
42 lines
1.9 KiB
Diff
commit 907b91e7154d57f091af547aa2179e1433bc69eb
|
|
Author: Gao,Yan <ygao@suse.com>
|
|
Date: Thu Apr 18 16:00:02 2013 +0800
|
|
|
|
Log: fencing: Drop the severity of the messages on registering a stonith device
|
|
|
|
Index: pacemaker-1.1.11+git20140303.ca8234d/fencing/commands.c
|
|
===================================================================
|
|
--- pacemaker-1.1.11+git20140303.ca8234d.orig/fencing/commands.c
|
|
+++ pacemaker-1.1.11+git20140303.ca8234d/fencing/commands.c
|
|
@@ -817,7 +817,7 @@ stonith_device_register(xmlNode * msg, c
|
|
|
|
dup = device_has_duplicate(device);
|
|
if (dup) {
|
|
- crm_notice("Device '%s' already existed in device list (%d active devices)", device->id,
|
|
+ crm_info("Device '%s' already existed in device list (%d active devices)", device->id,
|
|
g_hash_table_size(device_list));
|
|
free_device(device);
|
|
device = dup;
|
|
@@ -840,7 +840,7 @@ stonith_device_register(xmlNode * msg, c
|
|
}
|
|
g_hash_table_replace(device_list, device->id, device);
|
|
|
|
- crm_notice("Added '%s' to the device list (%d active devices)", device->id,
|
|
+ crm_info("Added '%s' to the device list (%d active devices)", device->id,
|
|
g_hash_table_size(device_list));
|
|
}
|
|
if (desc) {
|
|
Index: pacemaker-1.1.11+git20140303.ca8234d/fencing/main.c
|
|
===================================================================
|
|
--- pacemaker-1.1.11+git20140303.ca8234d.orig/fencing/main.c
|
|
+++ pacemaker-1.1.11+git20140303.ca8234d/fencing/main.c
|
|
@@ -981,7 +981,7 @@ update_cib_cache_cb(const char *event, x
|
|
break;
|
|
case -pcmk_err_diff_resync:
|
|
case -pcmk_err_diff_failed:
|
|
- crm_notice("[%s] Patch aborted: %s (%d)", event, pcmk_strerror(rc), rc);
|
|
+ crm_info("[%s] Patch aborted: %s (%d)", event, pcmk_strerror(rc), rc);
|
|
free_xml(local_cib);
|
|
local_cib = NULL;
|
|
break;
|