host-bmc: Removing misleading trace

This commit removes redundant traces that were unnecessarily flooding
the FFDC logs. The excess trace information could potentially mislead
users, so it's being removed to prevent confusion.

Change-Id: I54e68ac611d3d8f8e13090ab1b6eb521d9d28969
Signed-off-by: Kamalkumar Patel <kamalkumar.patel@ibm.com>
diff --git a/host-bmc/utils.cpp b/host-bmc/utils.cpp
index 6c1b818..784401c 100644
--- a/host-bmc/utils.cpp
+++ b/host-bmc/utils.cpp
@@ -70,9 +70,9 @@
     pldm_entity node_entity = pldm_entity_extract(entity);
     if (!entityMaps.contains(node_entity.entity_type))
     {
-        lg2::info(
-            "{ENTITY_TYPE} Entity fetched from remote PLDM terminal does not exist.",
-            "ENTITY_TYPE", (int)node_entity.entity_type);
+        // entityMaps doesn't contain entity type which are not required to
+        // build entity object path, so returning from here because this is a
+        // expected behaviour
         return;
     }