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);