summaryrefslogtreecommitdiffstats
path: root/manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'manager.cpp')
-rw-r--r--manager.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/manager.cpp b/manager.cpp
index 69d82b0..28e6815 100644
--- a/manager.cpp
+++ b/manager.cpp
@@ -2,6 +2,7 @@
#include <string>
#include <algorithm>
#include <phosphor-logging/log.hpp>
+#include <sdbusplus/exception.hpp>
#include <xyz/openbmc_project/Led/Physical/server.hpp>
#include "manager.hpp"
namespace phosphor
@@ -219,7 +220,17 @@ void Manager::populateObjectMap()
std::vector<std::string>>> objectTree;
// This is the dict of object paths - service names - interfaces
- reply.read(objectTree);
+ try
+ {
+ reply.read(objectTree);
+ }
+ catch (const sdbusplus::exception::SdBusError& e)
+ {
+ log<level::ERR>("Failed to parse Physical LED service lookup",
+ entry("ERROR=%s", e.what()),
+ entry("REPLY_SIG=%s", reply.get_signature()));
+ return;
+ }
if (objectTree.empty())
{
log<level::INFO>("Physical LED lookup did not return any services",
OpenPOWER on IntegriCloud