PEL: Remove a debug trace

Now that an inotify watch will tell the Repository to try to delete the
PEL from its index when a PEL file is deleted, it is expected that it
will already have been removed from the index when it was deleted the
proper way, such as when the OpenBMC event log is deleted.

Therefore, remove a trace from the path where a PEL can't be found in
in the index on removal, as it is expected in the above scenario.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I821b4432b52cea2263c85ae1d7be96220f43fc0e
diff --git a/extensions/openpower-pels/repository.cpp b/extensions/openpower-pels/repository.cpp
index 7fd509b..e9e5a18 100644
--- a/extensions/openpower-pels/repository.cpp
+++ b/extensions/openpower-pels/repository.cpp
@@ -225,12 +225,6 @@
 
         processDeleteCallbacks(pel->first.pelID.id);
     }
-    else
-    {
-        log<level::DEBUG>("Could not find PEL to remove",
-                          entry("PEL_ID=0x%X", id.pelID.id),
-                          entry("OBMC_LOG_ID=%d", id.obmcID.id));
-    }
 
     return actualID;
 }