File ID-103-picmg-discover-messages-should-be-DEBUG-not-INFO.patch of Package ipmitool.14274
From: Jim Mankovich <jmank@hp.com>
Subject: ID : 103 picmg discover messages should be DEBUG, not INFO
References: bsc#1085469
Patch-Mainline: IPMITOOL_1_8_15RC1
Git-commit: 58d510f90feba0e440d0a8d1670402cfbba894a9
Git-repo: https://github.com/watologo1/ipmitool.git.git
Changed picmg discover messages to LOG_DEBUG
Signed-off-by: <trenn@suse.com>
---
lib/ipmi_picmg.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
--- a/lib/ipmi_picmg.c
+++ b/lib/ipmi_picmg.c
@@ -2348,13 +2348,13 @@
req.msg.data_len = 1;
msg_data = 0;
- lprintf(LOG_INFO, "Running Get PICMG Properties my_addr %#x, transit %#x, target %#x",
+ lprintf(LOG_DEBUG, "Running Get PICMG Properties my_addr %#x, transit %#x, target %#x",
intf->my_addr, intf->transit_addr, intf->target_addr);
rsp = intf->sendrecv(intf, &req);
if (rsp == NULL) {
- lprintf(LOG_INFO,"No response from Get PICMG Properties");
+ lprintf(LOG_DEBUG,"No response from Get PICMG Properties");
} else if (rsp->ccode != 0) {
- lprintf(LOG_INFO,"Error response %#x from Get PICMG Properities",
+ lprintf(LOG_DEBUG,"Error response %#x from Get PICMG Properities",
rsp->ccode);
} else if (rsp->data_len < 4) {
lprintf(LOG_INFO,"Invalid Get PICMG Properties response length %d",
@@ -2369,7 +2369,7 @@
(rsp->data[1] & 0x0F), (rsp->data[1] >> 4));
} else {
picmg_avail = 1;
- lprintf(LOG_INFO, "Discovered PICMG Extension Version %d.%d",
+ lprintf(LOG_DEBUG, "Discovered PICMG Extension Version %d.%d",
(rsp->data[1] & 0x0f), (rsp->data[1] >> 4));
}