Skip to content

Commit

Permalink
remove unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
iwanbk committed Dec 13, 2024
1 parent dbd2128 commit 3accd7d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions zstor/src/actors/zstor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,13 +340,11 @@ impl Handler<Rebuild> for ZstorActor {
if let Some(data) = data {
if data.as_slice() == shards[i].as_ref() {
used_backends.push((key, Some(old_metadata.shards()[i].zdb().clone())));
debug!("Shard {} is the SAME", i);
} else {
used_backends.push((key, None));
warn!("Shard {} is DIFFERENT", i);
}
} else {
debug!("Shard {} is MISSING", i);
used_backends.push((key, None));
}
}
Expand Down

0 comments on commit 3accd7d

Please sign in to comment.