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

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
1 changed files with 0 additions and 6 deletions

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() {