We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73b7a0b commit 2fd6295Copy full SHA for 2fd6295
src/main.rs
@@ -1,10 +1,9 @@
1
-#![cfg_attr(debug_assertions, allow(dead_code, unused_imports))]
2
-
+#![allow(unused_imports)]
3
use axum::{http::StatusCode, response::IntoResponse, Router};
4
use std::io;
5
use tokio::net::TcpListener;
6
use tracing::{error, info};
7
-use tracing_appender::rolling::{daily, RollingFileAppender, Rotation};
+use tracing_appender::rolling::{RollingFileAppender, Rotation};
8
use tracing_subscriber::{fmt, prelude::*, Registry};
9
10
#[tokio::main]
0 commit comments