Skip to content

Commit cb9771a

Browse files
iwanbkLeeSmet
authored andcommitted
remove unnecessary logs
1 parent 29d3ef7 commit cb9771a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

zstor/src/actors/zstor.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,13 +340,11 @@ impl Handler<Rebuild> for ZstorActor {
340340
if let Some(data) = data {
341341
if data.as_slice() == shards[i].as_ref() {
342342
used_backends.push((key, Some(old_metadata.shards()[i].zdb().clone())));
343-
debug!("Shard {} is the SAME", i);
344343
} else {
345344
used_backends.push((key, None));
346-
warn!("Shard {} is DIFFERENT", i);
345+
error!("Shard {} is DIFFERENT", i);
347346
}
348347
} else {
349-
debug!("Shard {} is MISSING", i);
350348
used_backends.push((key, None));
351349
}
352350
}

0 commit comments

Comments
 (0)