recv pkt trace -> info

This commit is contained in:
jake 2023-01-31 19:18:18 -07:00
parent 52da851d8a
commit cccf385ee9

View File

@ -133,7 +133,7 @@ where
match pkt_receiver.recv_pkts::<R>().await {
Ok(pkts) => {
for pkt in pkts {
trace!("[recv from {:?}] {:#?}", client_id, pkt);
info!("[recv from {:?}] {:#?}", client_id, pkt);
match state.handle(client_id, pkt).await {
Ok(response) => {
for resp in response {