log: make some routing logs into debug logs
Some checks failed
CI / Rustfmt + Clippy (push) Has been cancelled
CI / Check (android) (push) Has been cancelled
CI / Test (Linux) (push) Has been cancelled
CI / Test (macOS) (push) Has been cancelled
CI / Test (Windows) (push) Has been cancelled
CI / rpm/deb (aarch64) (push) Has been cancelled
CI / rpm/deb (x86_64) (push) Has been cancelled
CI / macOS dmg (aarch64) (push) Has been cancelled
CI / macOS dmg (x86_64) (push) Has been cancelled
CI / Windows Installer (aarch64) (push) Has been cancelled
CI / Windows Installer (x86_64) (push) Has been cancelled
CI / Upload Artifacts to Server (push) Has been cancelled

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-06-24 08:01:41 -07:00
parent ca5ecb3777
commit 48f17f91b8

View File

@@ -344,10 +344,10 @@ impl<R: Clone> Router<R> {
self.returning = true; self.returning = true;
if let Some(range) = self.overlay_ranges.pop() { 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); self.remove_overlay(range);
} else { } else {
tracing::info!("Going back, no overlay"); tracing::debug!("Going back, no overlay");
} }
if self.routes.len() == 1 { if self.routes.len() == 1 {