Skip to content

Commit

Permalink
Less verbose logging when bitcoind is warming up (#908)
Browse files Browse the repository at this point in the history
  • Loading branch information
romanz authored Jul 22, 2023
1 parent cfaed09 commit 77f761e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fn rpc_poll(client: &mut Client, skip_block_download_wait: bool) -> PollResult {
Err(err) => {
if let Some(e) = extract_bitcoind_error(&err) {
if e.code == -28 {
info!("waiting for RPC warmup: {}", e.message);
debug!("waiting for RPC warmup: {}", e.message);
return PollResult::Retry;
}
}
Expand Down

0 comments on commit 77f761e

Please sign in to comment.