aboutsummaryrefslogtreecommitdiff
path: root/src/table/sync.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-09-20 11:49:48 +0200
committerAlex Auvolat <alex@adnab.me>2022-09-20 11:49:48 +0200
commit1f7b050b7dd975642c8cd5d8a7562d347cfa528d (patch)
tree9ed0c1a4c2ca52d5f9ef7a86320d0d1236255603 /src/table/sync.rs
parentfbd32933eaaee4fa2163497647ef70546c9ee8b9 (diff)
downloadgarage-1f7b050b7dd975642c8cd5d8a7562d347cfa528d.tar.gz
garage-1f7b050b7dd975642c8cd5d8a7562d347cfa528d.zip
Change a warn! into a debug!less-noise
Diffstat (limited to 'src/table/sync.rs')
-rw-r--r--src/table/sync.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/sync.rs b/src/table/sync.rs
index 62b88a58..28e99dd3 100644
--- a/src/table/sync.rs
+++ b/src/table/sync.rs
@@ -351,11 +351,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) => {