aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-01-21 01:23:31 -0800
committerFuwn <[email protected]>2026-01-21 01:23:31 -0800
commit6934161ffa585a9f83a01df2c971c278a0e52d35 (patch)
tree9db2d6b0d711ca427a2e00c6c5e80a007256fba8 /src
parentrefactor: Bump nightlky Rust toolchain channel and fix lints (diff)
downloadlocus-6934161ffa585a9f83a01df2c971c278a0e52d35.tar.xz
locus-6934161ffa585a9f83a01df2c971c278a0e52d35.zip
chore(deps): Bump indirect dependencies
Diffstat (limited to 'src')
-rw-r--r--src/modules/router/module.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/router/module.rs b/src/modules/router/module.rs
index 7ea18f4..263649c 100644
--- a/src/modules/router/module.rs
+++ b/src/modules/router/module.rs
@@ -40,7 +40,7 @@ pub fn module(router: &mut windmark::router::Router) {
info!(
"accepted connection from {} to {}",
context.peer_address.unwrap().ip(),
- context.url.to_string(),
+ context.url,
);
super::ticker::module(&context);
@@ -50,7 +50,7 @@ pub fn module(router: &mut windmark::router::Router) {
info!(
"closed connection from {} to {}",
context.peer_address.unwrap().ip(),
- context.url.to_string(),
+ context.url,
);
cache(&context, &response.content);