diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-11 11:43:58 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-11 11:43:58 +0100 |
commit | 171aa5502cfcac1abc5315c8792521790195e4a9 (patch) | |
tree | 4c8e944938501ba2ef3d0a7e0d5980d07b588221 /MIDI.cpp | |
parent | 3c7b85d8355c64dec5b4ce011753196d53774103 (diff) |
Add notes and temperature monitor
Diffstat (limited to 'MIDI.cpp')
-rw-r--r-- | MIDI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -137,7 +137,7 @@ void MIDI::process(snd_seq_event_t *ev) else if (ev->type == SND_SEQ_EVENT_SENSING) { signal_active_sensing(); - debug_cout << fmt::format("[{}] Active Sensing\n", timestamp_from_event(ev)) << std::endl; + debug_cout << fmt::format("[{}] Active Sensing", timestamp_from_event(ev)) << std::endl; } else if (ev->type == SND_SEQ_EVENT_CLOCK) { @@ -146,7 +146,7 @@ void MIDI::process(snd_seq_event_t *ev) } else { - log_cout << fmt::format("[{}] Unknown MIDI event: {}\n", timestamp_from_event(ev), ev->type) << std::endl; + log_cout << fmt::format("[{}] Unknown MIDI event: {}", timestamp_from_event(ev), ev->type) << std::endl; } signal_count_events(); |