Skip to content

Commit

Permalink
Replace info with error for tracing when login server is disconnected
Browse files Browse the repository at this point in the history
  • Loading branch information
artemijan committed Dec 14, 2024
1 parent 0600188 commit 0ed741c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/traits/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ pub trait Server {
.expect("Set nodelay failed");
let mut handler = T::new(stream, pool.clone(), controller.clone());
handler.handle_client().await;
info!("Lost connection to login server, trying again in 5 seconds...");
error!("Lost connection to login server, trying again in 5 seconds...");
tokio::time::sleep(tokio::time::Duration::from_secs(5)).await;
}
})
Expand Down

0 comments on commit 0ed741c

Please sign in to comment.