From 7e7dac3afbe4500fd3d4bd5ecf71f22be6cb1ca5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 28 Jan 2023 17:06:56 -0700 Subject: [PATCH] use debug bit --- libs/ardour/cliprec.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/cliprec.cc b/libs/ardour/cliprec.cc index d19fc94ea9..9040213c55 100644 --- a/libs/ardour/cliprec.cc +++ b/libs/ardour/cliprec.cc @@ -81,7 +81,7 @@ ClipRecProcessor::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t en samplecnt_t total = chaninfo->rw_vector.len[0] + chaninfo->rw_vector.len[1]; if (nframes > total) { - DEBUG_TRACE (DEBUG::Butler, string_compose ("%1 overrun in %2, rec_nframes = %3 total space = %4\n", + DEBUG_TRACE (DEBUG::ClipRecording, string_compose ("%1 overrun in %2, rec_nframes = %3 total space = %4\n", DEBUG_THREAD_SELF, name(), nframes, total)); return; }