summaryrefslogtreecommitdiffhomepage
path: root/MIDI.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2025-01-11 11:43:58 +0100
committerRoland Reichwein <mail@reichwein.it>2025-01-11 11:43:58 +0100
commit171aa5502cfcac1abc5315c8792521790195e4a9 (patch)
tree4c8e944938501ba2ef3d0a7e0d5980d07b588221 /MIDI.cpp
parent3c7b85d8355c64dec5b4ce011753196d53774103 (diff)
Add notes and temperature monitor
Diffstat (limited to 'MIDI.cpp')
-rw-r--r--MIDI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/MIDI.cpp b/MIDI.cpp
index dedd94a..4713a55 100644
--- a/MIDI.cpp
+++ b/MIDI.cpp
@@ -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();