Skip to content

Commit 03e4257

Browse files
committed
Demote/remove/update log messages
1 parent 97250c8 commit 03e4257

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/http.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,6 @@ fn setup(
425425
.and(warp::path!("sync"))
426426
.and(sync_tx)
427427
.map(|sync_tx: SyncChanSender| {
428-
info!("received sync notification");
429428
sync_tx.lock().unwrap().send(())?;
430429
Ok(reply::with_status("syncing queued", StatusCode::ACCEPTED))
431430
})

src/indexer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl Indexer {
105105
let mut changelog = changelog.into_vec();
106106

107107
if tip_updated {
108-
info!("synced up to {}", synced_tip.0);
108+
info!("synced up to height {}", synced_tip.0);
109109
changelog.push(IndexChange::ChainTip(synced_tip));
110110
self.tip = Some(synced_tip);
111111
}

src/util/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ pub fn debounce_sender(forward_tx: mpsc::Sender<()>, duration: u64) -> mpsc::Sen
9898
}
9999
}
100100
}
101-
info!(target: "bwt::real-time", "triggering real-time index sync");
101+
debug!(target: "bwt::real-time", "triggering real-time index sync");
102102
if forward_tx.send(()).is_err() {
103103
break 'outer;
104104
}

0 commit comments

Comments
 (0)