diff options
author | Alex Auvolat <alex@adnab.me> | 2022-09-20 15:19:58 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-09-20 15:19:58 +0200 |
commit | 357b72f4ff721fcf4dd92c1f410c5f92d4fb9ab0 (patch) | |
tree | dc063f42f28e34cbfc45c594df54aba5e2c01af4 /src/table/sync.rs | |
parent | 56592e18538b379ccaaa7b7c1990a599ac83b191 (diff) | |
parent | 2c312e9cbd58368484e9acb043b7c9d0ebb8905c (diff) | |
download | garage-357b72f4ff721fcf4dd92c1f410c5f92d4fb9ab0.tar.gz garage-357b72f4ff721fcf4dd92c1f410c5f92d4fb9ab0.zip |
Merge branch 'main' into configurable-timeouts
Diffstat (limited to 'src/table/sync.rs')
-rw-r--r-- | src/table/sync.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/sync.rs b/src/table/sync.rs index 76402d28..e34aa8d7 100644 --- a/src/table/sync.rs +++ b/src/table/sync.rs @@ -345,11 +345,11 @@ where // Just send that item directly if let Some(val) = self.data.store.get(&ik[..])? { if blake2sum(&val[..]) != ivhash { - warn!("({}) Hashes differ between stored value and Merkle tree, key: {:?} (if your server is very busy, don't worry, this happens when the Merkle tree can't be updated fast enough)", F::TABLE_NAME, ik); + debug!("({}) Hashes differ between stored value and Merkle tree, key: {} (if your server is very busy, don't worry, this happens when the Merkle tree can't be updated fast enough)", F::TABLE_NAME, hex::encode(ik)); } todo_items.push(val.to_vec()); } else { - warn!("({}) Item from Merkle tree not found in store: {:?} (if your server is very busy, don't worry, this happens when the Merkle tree can't be updated fast enough)", F::TABLE_NAME, ik); + debug!("({}) Item from Merkle tree not found in store: {} (if your server is very busy, don't worry, this happens when the Merkle tree can't be updated fast enough)", F::TABLE_NAME, hex::encode(ik)); } } MerkleNode::Intermediate(l) => { |