remove tracing initialization

This commit is contained in:
Giacomo Pasini 2025-04-24 10:42:11 +02:00
parent b294832b3c
commit 58981a5ea8
No known key found for this signature in database
GPG Key ID: FC08489D2D895D4B

View File

@ -177,9 +177,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
#[tokio::main]
async fn run_server() -> Result<(), Box<dyn std::error::Error>> {
// Initialize tracing
tracing_subscriber::fmt::init();
// Build our application with a route
let app = Router::new()
.route("/", get(http::serve_proof));