summaryrefslogtreecommitdiffhomepage
path: root/MIDI.cpp
diff options
context:
space:
mode:
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();