remove tracing initialization

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

View File

@ -183,9 +183,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));