aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-04-18 04:19:07 -0700
committerFuwn <[email protected]>2022-04-18 04:19:07 -0700
commit180c6088f42406c7f806d8fce74fcf36e966d188 (patch)
treebfd11e84dee23c7f561f72ef84abed59ef426e01
parentrefactor: constify many constants (diff)
downloadlocus-180c6088f42406c7f806d8fce74fcf36e966d188.tar.xz
locus-180c6088f42406c7f806d8fce74fcf36e966d188.zip
fix(route): remove debug logs
-rw-r--r--src/route.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/route.rs b/src/route.rs
index 7140e52..ed7b34c 100644
--- a/src/route.rs
+++ b/src/route.rs
@@ -82,10 +82,5 @@ pub fn cache(context: &windmark::returnable::RouteContext<'_>, response: &str) {
}
trace!("recache for {}", context.url.path());
- } else {
- trace!(
- "no cache, with last: {:?}",
- (*ROUTES.lock().unwrap()).get(context.url.path())
- );
}
}