From 6aaf6a583914cb4fe8fea26d64502a7b787f2173 Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Thu, 2 Jan 2025 12:03:08 +0100 Subject: [PATCH] chore: lower file client bad message log verbosity (#13619) --- crates/net/downloaders/src/file_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/net/downloaders/src/file_client.rs b/crates/net/downloaders/src/file_client.rs index 431762696..9230af541 100644 --- a/crates/net/downloaders/src/file_client.rs +++ b/crates/net/downloaders/src/file_client.rs @@ -340,7 +340,7 @@ impl BodiesClient for FileClient { impl DownloadClient for FileClient { fn report_bad_message(&self, _peer_id: PeerId) { - warn!("Reported a bad message on a file client, the file may be corrupted or invalid"); + trace!("Reported a bad message on a file client, the file may be corrupted or invalid"); // noop }