diff options
| author | Fuwn <[email protected]> | 2022-04-18 04:19:07 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-04-18 04:19:07 -0700 |
| commit | 180c6088f42406c7f806d8fce74fcf36e966d188 (patch) | |
| tree | bfd11e84dee23c7f561f72ef84abed59ef426e01 | |
| parent | refactor: constify many constants (diff) | |
| download | locus-180c6088f42406c7f806d8fce74fcf36e966d188.tar.xz locus-180c6088f42406c7f806d8fce74fcf36e966d188.zip | |
fix(route): remove debug logs
| -rw-r--r-- | src/route.rs | 5 |
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()) - ); } } |