bug fixes & help update

This commit is contained in:
2025-02-17 02:42:46 +01:00
parent 70126a5fd3
commit 53d5de35df
7 changed files with 29 additions and 20 deletions
+2 -2
View File
@@ -133,12 +133,12 @@ async fn handle_message(msg: tungstenite::protocol::Message, args: Args) {
}
}
tungstenite::Message::Binary(bytes) => {
if args.dev {
if args.dev && !args.noping {
rs_println!("[Binary] from Python: {:?}", bytes);
}
}
_ => {
if args.dev {
if args.dev && !args.noping {
rs_println!("Received from Python: [UNKNOWN / OTHER]");
}
}