From f6b4215100ee5fa4fae2dc7fe09e48e080af047e Mon Sep 17 00:00:00 2001 From: Sergei Shulepov <sergei@parity.io> Date: Fri, 26 Nov 2021 16:41:58 +0100 Subject: [PATCH] Do not log PVF prunning every hour (#4372) This lowers the level of the PVF pruning. Closes https://github.com/paritytech/polkadot/issues/4361 --- polkadot/node/core/pvf/src/host.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/node/core/pvf/src/host.rs b/polkadot/node/core/pvf/src/host.rs index 62cf77ba091..48b23547e68 100644 --- a/polkadot/node/core/pvf/src/host.rs +++ b/polkadot/node/core/pvf/src/host.rs @@ -646,7 +646,7 @@ async fn handle_cleanup_pulse( artifact_ttl: Duration, ) -> Result<(), Fatal> { let to_remove = artifacts.prune(artifact_ttl); - tracing::info!( + tracing::debug!( target: LOG_TARGET, "PVF pruning: {} artifacts reached their end of life", to_remove.len(), -- GitLab