Remove the print traces from the oem code
- Currently oem-ibm code does not have verbose infrastructure
in place,so removing the print traces for now & if need be we
can add the verbose infrastructure which needs more changes in
the handler code and that can be taken up as a separate
activity.
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
Change-Id: Ic81c86aa62ab1760ceb13f8f3f78be2d98b6db80
diff --git a/oem/ibm/libpldmresponder/file_io_type_progress_src.cpp b/oem/ibm/libpldmresponder/file_io_type_progress_src.cpp
index 3d51039..836a840 100644
--- a/oem/ibm/libpldmresponder/file_io_type_progress_src.cpp
+++ b/oem/ibm/libpldmresponder/file_io_type_progress_src.cpp
@@ -2,8 +2,6 @@
#include "common/utils.hpp"
-#include <iostream>
-
namespace pldm
{
@@ -67,9 +65,6 @@
for (int i = 0; i < 8; i++)
primaryCode |= (uint64_t)primaryCodeArray[i] << 8 * i;
- std::cout << "Primary Progress Code in Hex : " << std::hex
- << primaryCode << std::endl;
-
return setRawBootProperty(std::make_tuple(primaryCode, secondaryCode));
}
return PLDM_ERROR;