Remove the debug messages

This commit is contained in:
Paul Fd 2020-03-15 23:24:15 +01:00
parent 98392a7b9a
commit 55a816f703

View file

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