From 48f17f91b85e9e0a353526481aff84a68a1920e2 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Tue, 24 Jun 2025 08:01:41 -0700 Subject: [PATCH] log: make some routing logs into debug logs Signed-off-by: William Casarin --- crates/notedeck_columns/src/route.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/notedeck_columns/src/route.rs b/crates/notedeck_columns/src/route.rs index cd09dbc6..7a9c0012 100644 --- a/crates/notedeck_columns/src/route.rs +++ b/crates/notedeck_columns/src/route.rs @@ -344,10 +344,10 @@ impl Router { self.returning = true; if let Some(range) = self.overlay_ranges.pop() { - tracing::info!("Going back, found overlay: {:?}", range); + tracing::debug!("Going back, found overlay: {:?}", range); self.remove_overlay(range); } else { - tracing::info!("Going back, no overlay"); + tracing::debug!("Going back, no overlay"); } if self.routes.len() == 1 {