@@ -458,7 +458,7 @@ async fn main() {
458458
459459 tracing:: info!(
460460 "ssh server listening on {} (app@{}, {}ms)" ,
461- address. to_string( ) . cyan ( ) ,
461+ address. to_string( ) ,
462462 wings_rs:: VERSION ,
463463 state. start_time. elapsed( ) . as_millis( )
464464 ) ;
@@ -503,7 +503,7 @@ async fn main() {
503503 . context ( "failed to load SSL certificate and key" )
504504 . unwrap ( ) ;
505505
506- tracing:: info!( "https listening on {}" , address. to_string( ) . cyan ( ) , ) ;
506+ tracing:: info!( "https listening on {}" , address. to_string( ) ) ;
507507
508508 match axum_server:: bind_rustls ( address, config)
509509 . serve ( router. into_make_service_with_connect_info :: < SocketAddr > ( ) )
@@ -521,7 +521,7 @@ async fn main() {
521521 }
522522 }
523523 } else {
524- tracing:: info!( "http listening on {}" , address. to_string( ) . cyan ( ) , ) ;
524+ tracing:: info!( "http listening on {}" , address. to_string( ) ) ;
525525
526526 match axum:: serve (
527527 match tokio:: net:: TcpListener :: bind ( address) . await {
@@ -557,7 +557,7 @@ async fn main() {
557557 {
558558 let socket_path = & state. config . api . host ;
559559
560- tracing:: info!( "http server listening on {}" , socket_path. cyan ( ) , ) ;
560+ tracing:: info!( "http server listening on {}" , socket_path) ;
561561
562562 let router = router. layer ( axum:: middleware:: from_fn (
563563 |mut req : Request , next : Next | async move {
0 commit comments