Skip to content

Commit

Permalink
print unhandled midi in hex
Browse files Browse the repository at this point in the history
  • Loading branch information
ahihi committed Aug 1, 2024
1 parent 182e21a commit c63dc8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ fn run_midi_receiver(
loop {
let msg = rx.recv().unwrap();
let Some(response) = interpreter.write().unwrap().handle_midi(&msg) else {
warn!("unhandled midi message: {:?}", msg);
warn!("unhandled midi message: {:02x?}", msg);
continue;
};

Expand Down

0 comments on commit c63dc8a

Please sign in to comment.