Skip to content

Commit

Permalink
Update worker log level (polkadot-evm#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
boundless-forest authored May 12, 2021
1 parent 7983c9c commit 3271500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/mapping-sync/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use sc_client_api::BlockOf;
use sp_blockchain::HeaderBackend;
use fp_rpc::EthereumRuntimeRPCApi;
use futures_timer::Delay;
use log::warn;
use log::debug;

const LIMIT: usize = 8;

Expand Down Expand Up @@ -114,7 +114,7 @@ impl<Block: BlockT, C, B> Stream for MappingSyncWorker<Block, C, B> where
},
Err(e) => {
self.have_next = false;
warn!(target: "mapping-sync", "Syncing failed with error {:?}, retrying.", e);
debug!(target: "mapping-sync", "Syncing failed with error {:?}, retrying.", e);
Poll::Ready(Some(()))
},
}
Expand Down

0 comments on commit 3271500

Please sign in to comment.