diff options
| author | Fuwn <[email protected]> | 2026-01-21 01:23:31 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-21 01:23:31 -0800 |
| commit | 6934161ffa585a9f83a01df2c971c278a0e52d35 (patch) | |
| tree | 9db2d6b0d711ca427a2e00c6c5e80a007256fba8 /src | |
| parent | refactor: Bump nightlky Rust toolchain channel and fix lints (diff) | |
| download | locus-6934161ffa585a9f83a01df2c971c278a0e52d35.tar.xz locus-6934161ffa585a9f83a01df2c971c278a0e52d35.zip | |
chore(deps): Bump indirect dependencies
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/router/module.rs | 4 |
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); |