diff --git a/src/main.rs b/src/main.rs index ac3e321..642dbc0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -47,8 +47,8 @@ pub fn router() -> Router { } async fn root() -> axum::response::Html { - let current_time = Local::now().format("%Y-%m-%d %H:%M:%S").to_string(); + println!("Current Time: {}", current_time); axum::response::Html(format!("

Current Time: {}

", current_time)) }