From b72de689e2af9eb7d1f4b0fb727cf626aa13c912 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 4 Mar 2024 12:24:13 -0700 Subject: [PATCH] Reduce log level for missing mime applications --- src/mime_app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mime_app.rs b/src/mime_app.rs index ec8062d..53a2ae0 100644 --- a/src/mime_app.rs +++ b/src/mime_app.rs @@ -192,7 +192,7 @@ impl MimeAppCache { { apps.push(MimeApp::from(app)); } else { - log::warn!("failed to add association for {:?}: application {:?} not found", mime, filename); + log::debug!("failed to add association for {:?}: application {:?} not found", mime, filename); } } } @@ -231,7 +231,7 @@ impl MimeAppCache { if found { break; } else { - log::warn!("failed to set default for {:?}: application {:?} not found", mime, filename); + log::debug!("failed to set default for {:?}: application {:?} not found", mime, filename); } } }