From 171aa5502cfcac1abc5315c8792521790195e4a9 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 11 Jan 2025 11:43:58 +0100 Subject: Add notes and temperature monitor --- MIDI.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MIDI.cpp') 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(); -- cgit v1.2.3