13
0

Fix some debug messages

This commit is contained in:
Robin Gareus 2024-09-25 19:34:38 +02:00
parent 74bbcdcae7
commit 5af023c70b
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 2 additions and 2 deletions

View File

@ -508,7 +508,7 @@ midi:
} }
} else { } else {
if ((samplecnt_t)c->front ()->rbuf->write_space () >= _chunk_samples) { if ((samplecnt_t)c->front ()->rbuf->write_space () >= _chunk_samples) {
DEBUG_TRACE (DEBUG::Butler, string_compose ("%1: write space = %2 of %3\n", name (), c->front ()->rbuf->write_space (), DEBUG_TRACE (DEBUG::Butler, string_compose ("%1: write space = %2 chunk size = %3\n", name (), c->front ()->rbuf->write_space (),
_chunk_samples)); _chunk_samples));
butler_required = true; butler_required = true;
} }

View File

@ -190,7 +190,7 @@ Session::locate (samplepos_t target_sample, bool for_loop_end, bool force, bool
* changes in the value of _transport_sample. * changes in the value of _transport_sample.
*/ */
DEBUG_TRACE (DEBUG::Transport, string_compose ("rt-locate to %1 ts = %7, for loop end %2 force %3 mmc %4\n", DEBUG_TRACE (DEBUG::Transport, string_compose ("rt-locate to %1 ts = %5, for loop end %2 force %3 mmc %4\n",
target_sample, for_loop_end, force, with_mmc, _transport_sample)); target_sample, for_loop_end, force, with_mmc, _transport_sample));
if (!force && (_transport_sample == target_sample) && !for_loop_end) { if (!force && (_transport_sample == target_sample) && !for_loop_end) {