From a84164cd94a4aa045204ce6f87da81d162015c79 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 26 Feb 2019 09:01:16 -0700 Subject: [PATCH] enhanced debug trace output --- libs/ardour/transport_master.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/transport_master.cc b/libs/ardour/transport_master.cc index 2cd6ce1617..dce72c5ed9 100644 --- a/libs/ardour/transport_master.cc +++ b/libs/ardour/transport_master.cc @@ -122,7 +122,7 @@ TransportMaster::speed_and_position (double& speed, samplepos_t& pos, samplepos_ speed = last.speed; pos = last.position + (now - last.timestamp) * last.speed; - DEBUG_TRACE (DEBUG::Slave, string_compose ("%1: speed_and_position tme: %2 pos: %3 spd: %4\n", name(), last.timestamp, last.position, last.speed)); + DEBUG_TRACE (DEBUG::Slave, string_compose ("%1: speed_and_position @ %5 last @ %2 pos: %3 spd: %4\n", name(), last.timestamp, last.position, last.speed, now)); lp = last.position; when = last.timestamp;