From b115a04babe8435eeaba36469eeb6145250c70cd Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 27 Jul 2017 17:39:45 -0400 Subject: [PATCH] additional DEBUG_TRACE output for slave/diskreader --- libs/ardour/session_process.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc index b642a0bb0d..bac50b61a8 100644 --- a/libs/ardour/session_process.cc +++ b/libs/ardour/session_process.cc @@ -653,14 +653,14 @@ Session::follow_slave (pframes_t nframes) } if (!actively_recording() && (framecnt_t) average_slave_delta > _slave->resolution()) { - DEBUG_TRACE (DEBUG::Slave, string_compose ("average slave delta %1 greater than slave resolution %2 => silent motion\n", average_slave_delta, _slave->resolution())); + DEBUG_TRACE (DEBUG::Slave, string_compose ("average slave delta %1 greater than slave resolution %2 => no disk output\n", average_slave_delta, _slave->resolution())); /* run routes as normal, but no disk output */ DiskReader::set_no_disk_output (true); return true; } if (!have_first_delta_accumulator) { - DEBUG_TRACE (DEBUG::Slave, "waiting for first slave delta accumulator to be ready\n"); + DEBUG_TRACE (DEBUG::Slave, "waiting for first slave delta accumulator to be ready, no disk output\n"); /* run routes as normal, but no disk output */ DiskReader::set_no_disk_output (true); return true; @@ -670,6 +670,7 @@ Session::follow_slave (pframes_t nframes) if (!have_first_delta_accumulator) { + DEBUG_TRACE (DEBUG::Slave, "still waiting to compute slave delta, no disk output\n"); DiskReader::set_no_disk_output (true); } else { DiskReader::set_no_disk_output (false); -- 2.30.2