diff options
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(); |