Skip to content

Commit

Permalink
Added log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
hemantk-12 committed Nov 28, 2023
1 parent 8143346 commit c071918
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ public void invalidate(String key) throws IOException {
boolean rm = pendingEvictionList.remove(v);
if (rm) {
throw new IllegalStateException("Failed to remove entry from PEL");
} else {
LOG.info("HEKU: Removed entry for key: {} successfully. " +
"pendingEvictionList size: {}", k, pendingEvictionList.size());
}
try {
((OmSnapshot) v.get()).close();
Expand Down

0 comments on commit c071918

Please sign in to comment.