Skip to content

Commit 3accd7d

Browse files
committed
remove unnecessary logs
1 parent dbd2128 commit 3accd7d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

zstor/src/actors/zstor.rs

Lines changed: 0 additions & 2 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));
346345
warn!("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)