mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 20:55:48 +01:00
error/debug output when dropping MIDI event due to timing now shows MIDI bytes
This commit is contained in:
parent
aafd1d77e9
commit
bd97450ef8
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue