PEL: Changing the remaining traces to lg2 style
Some of the logging traces of PEL files still uses old style of logging.
Changing the remaining traces in PEL files to lg2 style of logging.Some
of the traces in phosphor logging code which use the old style is also
considered.
Change-Id: I0daf9589af443881cb61730047c23db17fdec2c3
Signed-off-by: Arya K Padman <aryakpadman@gmail.com>
diff --git a/extensions/openpower-pels/callout.cpp b/extensions/openpower-pels/callout.cpp
index 705b1e4..dfc08bd 100644
--- a/extensions/openpower-pels/callout.cpp
+++ b/extensions/openpower-pels/callout.cpp
@@ -15,7 +15,9 @@
*/
#include "callout.hpp"
-#include <phosphor-logging/log.hpp>
+#include <phosphor-logging/lg2.hpp>
+
+#include <map>
namespace openpower
{
@@ -24,8 +26,6 @@
namespace src
{
-using namespace phosphor::logging;
-
constexpr size_t locationCodeMaxSize = 80;
Callout::Callout(Stream& pel)
@@ -70,8 +70,8 @@
break;
}
default:
- log<level::ERR>("Invalid Callout subsection type",
- entry("CALLOUT_TYPE=0x%X", type));
+ lg2::error("Invalid Callout subsection type {CALLOUT_TYPE}",
+ "CALLOUT_TYPE", lg2::hex, type);
throw std::runtime_error("Invalid Callout subsection type");
break;
}