error/debug output when dropping MIDI event due to timing now shows MIDI bytes

This commit is contained in:
Paul Davis 2014-10-22 17:04:12 -04:00
parent aafd1d77e9
commit bd97450ef8

View file

@ -207,7 +207,11 @@ MidiPort::flush_buffers (pframes_t nframes)
} else {
cerr << "drop flushed event on the floor, time " << ev.time()
<< " too early for " << _global_port_buffer_offset
<< " + " << _port_buffer_offset << endl;
<< " + " << _port_buffer_offset;
for (int xx = 0; xx < ev.size(); ++xx) {
cerr << ' ' << hex << (int) ev.buffer()[xx];
}
cerr << dec << endl;
}
}