PLDM: Implementing Phosphor-Logging/LG2 logging
This commit migrates std::cerr/cout added as part
of new changes in PLDM to LG2.
Change-Id: I8e85732684d47b6740521e95712433a7c6760d8a
Signed-off-by: Riya Dixit <riyadixitagra@gmail.com>
diff --git a/libpldmresponder/fru.cpp b/libpldmresponder/fru.cpp
index a716f5d..98f696c 100644
--- a/libpldmresponder/fru.cpp
+++ b/libpldmresponder/fru.cpp
@@ -65,7 +65,7 @@
while (!tmpObj.empty())
{
std::string s = tmpObj.top();
- std::cout << s << std::endl;
+ info("{TMP_OBJ_STR}", "TMP_OBJ_PATH", s);
tmpObj.pop();
}
// Update pldm entity to assocition tree
@@ -208,7 +208,7 @@
}
catch (const std::exception& e)
{
- info(
+ error(
"Config JSONs missing for the item interface type, interface = {INTF}",
"INTF", interface.first);
break;