Skip to content

Commit

Permalink
src: lib: web: Adjust debug message for better information
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoantoniocardoso committed Oct 22, 2024
1 parent 7579b7a commit 8c63d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/web/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async fn websocket_connection(socket: WebSocket, state: AppState) {
broadcast_message_websockets(&state, identifier, Message::Text(text)).await;
}
Message::Close(frame) => {
debug!("WS client {identifier} disconnected: {frame:#?}");
debug!("WS client {identifier} disconnected: {frame:?}");
break;
}
_ => {}
Expand Down

0 comments on commit 8c63d68

Please sign in to comment.