Remove the debug messages
This commit is contained in:
parent
98392a7b9a
commit
55a816f703
1 changed files with 0 additions and 4 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue