Skip to content

Commit fb74c3f

Browse files
committed
chore: remove unused logs
Signed-off-by: Xin Liu <sam@secondstate.io>
1 parent 42aed0c commit fb74c3f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ async fn main() -> Result<(), ServerError> {
6464

6565
// Parse command line arguments
6666
let cli = Cli::parse();
67-
info!("Server starting, command line arguments parsed");
6867

6968
// Build application routes
7069
let app = Router::new()
@@ -74,14 +73,12 @@ async fn main() -> Result<(), ServerError> {
7473
"/v1/index/download/{index_name}",
7574
get(download_index_file_handler),
7675
);
77-
info!("Route configuration completed");
7876

7977
// Run the server
8078
let addr = match cli.socket_addr {
8179
Some(addr) => addr,
8280
None => SocketAddr::from(([0, 0, 0, 0], cli.port)),
8381
};
84-
info!("Binding to address: {}", addr);
8582

8683
// set DOWNLOAD_URL_PREFIX
8784
match cli.download_url_prefix {

0 commit comments

Comments
 (0)