diff --git a/polkadot/node/core/approval-voting/src/lib.rs b/polkadot/node/core/approval-voting/src/lib.rs index 86dbd71485..436fa8ff6e 100644 --- a/polkadot/node/core/approval-voting/src/lib.rs +++ b/polkadot/node/core/approval-voting/src/lib.rs @@ -920,7 +920,7 @@ async fn handle_actions( match confirmation_rx.await { Err(oneshot::Canceled) => { - tracing::warn!(target: LOG_TARGET, "Dispute coordinator confirmation lost",) + tracing::debug!(target: LOG_TARGET, "Dispute coordinator confirmation lost",) }, Ok(ImportStatementsResult::ValidImport) => {}, Ok(ImportStatementsResult::InvalidImport) => tracing::warn!( diff --git a/polkadot/node/core/backing/src/lib.rs b/polkadot/node/core/backing/src/lib.rs index a01fe77b2b..5ed80017e7 100644 --- a/polkadot/node/core/backing/src/lib.rs +++ b/polkadot/node/core/backing/src/lib.rs @@ -901,7 +901,7 @@ impl CandidateBackingJob { match confirmation_rx.await { Err(oneshot::Canceled) => - tracing::warn!(target: LOG_TARGET, "Dispute coordinator confirmation lost",), + tracing::debug!(target: LOG_TARGET, "Dispute coordinator confirmation lost",), Ok(ImportStatementsResult::ValidImport) => {}, Ok(ImportStatementsResult::InvalidImport) => tracing::warn!(target: LOG_TARGET, "Failed to import statements of validity",), diff --git a/polkadot/node/network/dispute-distribution/src/receiver/error.rs b/polkadot/node/network/dispute-distribution/src/receiver/error.rs index e9c92f171d..bde8899494 100644 --- a/polkadot/node/network/dispute-distribution/src/receiver/error.rs +++ b/polkadot/node/network/dispute-distribution/src/receiver/error.rs @@ -106,6 +106,10 @@ pub type NonFatalResult = std::result::Result; pub fn log_error(result: Result<()>) -> std::result::Result<(), Fatal> { match result { Err(Error::Fatal(f)) => Err(f), + Err(Error::NonFatal(error @ NonFatal::ImportCanceled(_))) => { + tracing::debug!(target: LOG_TARGET, error = ?error); + Ok(()) + }, Err(Error::NonFatal(error)) => { tracing::warn!(target: LOG_TARGET, error = ?error); Ok(())