From 66f541f1c751857e2206d70a550d96d2b040cdce Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Sun, 9 Nov 2025 21:36:17 +0100 Subject: [PATCH] Drop log level for 404 to info fixes #139 --- src/app.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 7634d2c..95ae258 100644 --- a/src/app.rs +++ b/src/app.rs @@ -173,7 +173,9 @@ pub fn make_app( tracing::debug!("unauthorized"); } StatusCode::NOT_FOUND => { - tracing::warn!("client error"); + // Clients like GNOME Calendar will try to reach /remote.php/webdav + // quite often clogging up the logs + tracing::info!("client error"); } _ => { tracing::error!("client error");