remove useless info!()
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Alex 2022-06-28 17:43:56 +02:00
parent 368414a261
commit c4be56704d
Signed by: lx
GPG key ID: 0E496D15096376BE

View file

@ -105,9 +105,6 @@ impl Worker for RepairVersionsWorker {
};
self.counter += 1;
if self.counter % 1000 == 0 {
info!("repair_versions: {}", self.counter);
}
let version = rmp_serde::decode::from_read_ref::<_, Version>(&item_bytes)?;
if !version.deleted.get() {
@ -189,9 +186,6 @@ impl Worker for RepairBlockrefsWorker {
};
self.counter += 1;
if self.counter % 1000 == 0 {
info!("repair_block_ref: {}", self.counter);
}
let block_ref = rmp_serde::decode::from_read_ref::<_, BlockRef>(&item_bytes)?;
if !block_ref.deleted.get() {