🏗️ Elegant & Highly Performant Async Gemini Server Framework for the Modern Age
async framework gemini-protocol protocol gemini rust
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(router): Use warn! macro instead of println! for stream errors

Fuwn 5165fd07 69f4f259

+1 -1
+1 -1
src/router.rs
··· 381 381 match quick_stream { 382 382 Ok(mut stream) => { 383 383 if let Err(e) = std::pin::Pin::new(&mut stream).accept().await { 384 - println!("stream accept error: {e:?}"); 384 + warn!("stream accept error: {e:?}"); 385 385 } 386 386 387 387 let router_instance = Self {