From 55031e72e6c02b4ae63e9052bad1a4b40002ac18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 1 Dec 2014 12:15:48 +0100 Subject: Imported Upstream version 1.8.15 --- lib/ipmi_picmg.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/ipmi_picmg.c') diff --git a/lib/ipmi_picmg.c b/lib/ipmi_picmg.c index d1c82b2..7a66aa5 100644 --- a/lib/ipmi_picmg.c +++ b/lib/ipmi_picmg.c @@ -2345,7 +2345,7 @@ picmg_discover(struct ipmi_intf *intf) { 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 && !rsp->ccode) { @@ -2353,19 +2353,19 @@ picmg_discover(struct ipmi_intf *intf) { ((rsp->data[1] & 0x0F) == PICMG_ATCA_MAJOR_VERSION || (rsp->data[1] & 0x0F) == PICMG_AMC_MAJOR_VERSION) ) { intf->picmg_avail = 1; - lprintf(LOG_INFO, "Discovered PICMG Extension %d.%d", + lprintf(LOG_DEBUG, "Discovered PICMG Extension %d.%d", (rsp->data[1] & 0x0f), (rsp->data[1] >> 4)); - } + } } else { if (rsp == NULL) { - lprintf(LOG_INFO,"No Response from Get PICMG Properties"); + lprintf(LOG_DEBUG,"No Response from Get PICMG Properties"); } else { - lprintf(LOG_INFO,"Error Response %#x from Get PICMG Properities", rsp->ccode); + lprintf(LOG_DEBUG,"Error Response %#x from Get PICMG Properities", rsp->ccode); } } } if (intf->picmg_avail == 0) { - lprintf(LOG_INFO, "No PICMG Extenstion discovered"); + lprintf(LOG_DEBUG, "No PICMG Extenstion discovered"); } return intf->picmg_avail; } -- cgit v1.2.3