Fix Table:: Command Not found: 0xb03e

The error msg:"E> Table:: Command Not found: 0xb03e" is getting dumped
into journal for every IPMI request to BMC. Here the command:b03e - is
a group extensions command to query about HPM compatibility. This is
not a standard command ,issued by ipmitool to gather information, can
be ignored.

Resolves openbmc/openbmc#3100

Change-Id: I5d89ad61144f11e80afa3bba39835119f5d96eb6
Signed-off-by: Nagaraju Goruganti <ngorugan@in.ibm.com>
diff --git a/command_table.cpp b/command_table.cpp
index 07ad157..7775022 100644
--- a/command_table.cpp
+++ b/command_table.cpp
@@ -41,9 +41,6 @@
 
     if (iterator == commandTable.end())
     {
-        std::cerr << "E> Table:: Command Not found: 0x" << std::hex << inCommand
-                  << "\n";
-
         response.resize(1);
         response[0] = IPMI_CC_INVALID;
     }