summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index c6b5b04..e680d7c 100644
--- a/main.cpp
+++ b/main.cpp
@@ -26,6 +26,7 @@
#include <host-ipmid/iana.hpp>
#include <host-ipmid/oemrouter.hpp>
#include <memory>
+#include <phosphor-logging/log.hpp>
/* TODO: Swap out once https://gerrit.openbmc-project.xyz/12743 is merged */
namespace oem
@@ -36,6 +37,8 @@ constexpr auto blobTransferCmd = 128;
namespace blobs
{
+using namespace phosphor::logging;
+
static ipmi_ret_t handleBlobCommand(ipmi_cmd_t cmd, const uint8_t* reqBuf,
uint8_t* replyCmdBuf, size_t* dataLen)
{
@@ -75,6 +78,14 @@ void setupBlobGlobalHandler()
handleBlobCommand);
/* Install handlers. */
- loadLibraries(expectedHandlerPath);
+ try
+ {
+ loadLibraries(expectedHandlerPath);
+ }
+ catch (const std::exception& e)
+ {
+ log<level::ERR>("ERROR loading blob handlers",
+ entry("ERROR=%s", e.what()));
+ }
}
} // namespace blobs
OpenPOWER on IntegriCloud