Skip to content

Commit 6c8afb8

Browse files
host-bmc: Update set host effecter PEL severity (ibm-openbmc#534)
This commit updates the severity of PEL 'xyz.openbmc_project.PLDM.Error.SetHostEffecterFailed' from ERROR to INFORMATIONAL. Test: Triggered set numericEffecter at runtime and verified the severity of PEL logged as INFORMATIONAL. Signed-off-by: Riya Dixit <[email protected]>
1 parent 684f148 commit 6c8afb8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

host-bmc/dbus_to_host_effecters.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ int HostEffecterParser::sendSetStateEffecterStates(
290290
"EFFECTER_ID", effecterId, "RC", rc);
291291
pldm::utils::reportError(
292292
"xyz.openbmc_project.PLDM.Error.SetHostEffecterFailed",
293-
pldm::PelSeverity::ERROR);
293+
pldm::PelSeverity::INFORMATIONAL);
294294
}
295295
if (completionCode)
296296
{
@@ -300,7 +300,7 @@ int HostEffecterParser::sendSetStateEffecterStates(
300300
static_cast<unsigned>(completionCode));
301301
pldm::utils::reportError(
302302
"xyz.openbmc_project.PLDM.Error.SetHostEffecterFailed",
303-
pldm::PelSeverity::ERROR);
303+
pldm::PelSeverity::INFORMATIONAL);
304304
}
305305
else
306306
{

oem/ibm/libpldmresponder/oem_ibm_handler.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ void pldm::responder::oem_ibm_platform::Handler::setHostEffecterState(
11561156
"RESPONSE_CODE", rc);
11571157
pldm::utils::reportError(
11581158
"xyz.openbmc_project.PLDM.Error.SetHostEffecterFailed",
1159-
pldm::PelSeverity::ERROR);
1159+
pldm::PelSeverity::INFORMATIONAL);
11601160
}
11611161
if (completionCode)
11621162
{
@@ -1166,7 +1166,7 @@ void pldm::responder::oem_ibm_platform::Handler::setHostEffecterState(
11661166
completionCode);
11671167
pldm::utils::reportError(
11681168
"xyz.openbmc_project.PLDM.Error.SetHostEffecterFailed",
1169-
pldm::PelSeverity::ERROR);
1169+
pldm::PelSeverity::INFORMATIONAL);
11701170
}
11711171
};
11721172
rc = handler->registerRequest(

0 commit comments

Comments
 (0)