From 58981a5ea894f0d4162bd0115070f7bcfe6de8a5 Mon Sep 17 00:00:00 2001 From: Giacomo Pasini Date: Thu, 24 Apr 2025 10:42:11 +0200 Subject: [PATCH] remove tracing initialization --- sz-poc-offsite-2025/evm/prover/src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/sz-poc-offsite-2025/evm/prover/src/main.rs b/sz-poc-offsite-2025/evm/prover/src/main.rs index dcdfda9..3faf124 100644 --- a/sz-poc-offsite-2025/evm/prover/src/main.rs +++ b/sz-poc-offsite-2025/evm/prover/src/main.rs @@ -177,9 +177,6 @@ fn main() -> Result<(), Box> { #[tokio::main] async fn run_server() -> Result<(), Box> { - // Initialize tracing - tracing_subscriber::fmt::init(); - // Build our application with a route let app = Router::new() .route("/", get(http::serve_proof));