From 55a816f703bf15022fb8860cf206f6612bb6d9a1 Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Sun, 15 Mar 2020 23:24:15 +0100 Subject: [PATCH] Remove the debug messages --- src/sfizz/Synth.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/sfizz/Synth.cpp b/src/sfizz/Synth.cpp index 4c4bce96..4c692168 100644 --- a/src/sfizz/Synth.cpp +++ b/src/sfizz/Synth.cpp @@ -579,8 +579,6 @@ void sfz::Synth::noteOn(int delay, int noteNumber, uint8_t velocity) noexcept ASSERT(noteNumber < 128); ASSERT(noteNumber >= 0); - DBG("Note on at " << noteNumber << " (" << +velocity << ")"); - ScopedTiming logger { dispatchDuration, ScopedTiming::Operation::addToDuration }; resources.midiState.noteOnEvent(delay, noteNumber, velocity); @@ -597,8 +595,6 @@ void sfz::Synth::noteOff(int delay, int noteNumber, uint8_t velocity) noexcept ASSERT(noteNumber >= 0); UNUSED(velocity); - DBG("Note off at " << noteNumber << " (" << +velocity << ")"); - ScopedTiming logger { dispatchDuration, ScopedTiming::Operation::addToDuration }; resources.midiState.noteOffEvent(delay, noteNumber, velocity);