Skip to content

Commit

Permalink
remove unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
iwanbk authored and LeeSmet committed Dec 17, 2024
1 parent 29d3ef7 commit cb9771a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 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);
error!("Shard {} is DIFFERENT", i);
}
} else {
debug!("Shard {} is MISSING", i);
used_backends.push((key, None));
}
}
Expand Down

0 comments on commit cb9771a

Please sign in to comment.