diff --git a/server/src/main.rs b/server/src/main.rs index fdb0d5c..d0e87a2 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -165,7 +165,10 @@ async fn main() -> anyhow::Result<()> { .init(); validate_config_cache(); - info!("listening on {:?} with socket type {:?}", CONFIG.server.bind, CONFIG.server.socket); + info!( + "listening on {:?} with socket type {:?}", + CONFIG.server.bind, CONFIG.server.socket + ); tokio::spawn(async { let mut sig = signal(SignalKind::user_defined1()).unwrap();