Skip to content

Commit

Permalink
chore: add a dbg! to track flaky test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuhvi committed Dec 5, 2024
1 parent e3a417c commit 38bad10
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkarr/src/extra/lmdb_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ impl Cache for LmdbCache {

fn put(&self, key: &CacheKey, signed_packet: &SignedPacket) {
if let Err(error) = self.internal_put(key, signed_packet) {
dbg!(&error);
debug!(?error, "Error in LmdbCache::put");
};
}
Expand Down

0 comments on commit 38bad10

Please sign in to comment.