oem-ibm: remove debug log in PEL read handler

The debug log is unnecessary in production code.

Change-Id: I6ede66fc0ee031a90ea829017c4b42756fb75a3a
Signed-off-by: Pavithra Barithaya <pbaritha@in.ibm.com>
diff --git a/oem/ibm/libpldmresponder/file_io_type_pel.cpp b/oem/ibm/libpldmresponder/file_io_type_pel.cpp
index 3b43856..b28b7c6 100644
--- a/oem/ibm/libpldmresponder/file_io_type_pel.cpp
+++ b/oem/ibm/libpldmresponder/file_io_type_pel.cpp
@@ -71,7 +71,7 @@
         auto reply = bus.call(method);
         sdbusplus::message::unix_fd fd{};
         reply.read(fd);
-        std::cerr << "GetPEL D-Bus call done\n";
+
         off_t fileSize = lseek(fd, 0, SEEK_END);
         if (fileSize == -1)
         {