From 24cce2e43d2c5dc3852f8d3747650311a8cbf18e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 10 Apr 2020 15:30:26 -0600 Subject: use cout not cerr for some temporary debugging messages --- libs/ardour/disk_reader.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libs') diff --git a/libs/ardour/disk_reader.cc b/libs/ardour/disk_reader.cc index 237ccd2214..5596c23d18 100644 --- a/libs/ardour/disk_reader.cc +++ b/libs/ardour/disk_reader.cc @@ -1720,8 +1720,7 @@ DiskReader::maybe_xfade_loop (Sample* buf, samplepos_t read_start, samplepos_t r * see also DiskReader::Declicker::run() */ - cerr << "maybe_xfade, overlap style: " << enum_2_string (Evoral::coverage (fade_start, fade_end, read_start, read_end)) << endl; - + cout << "maybe_xfade, overlap style: " << enum_2_string (Evoral::coverage (fade_start, fade_end, read_start, read_end)) << endl; switch (Evoral::coverage (fade_start, fade_end, read_start, read_end)) { case Evoral::OverlapInternal: @@ -1774,7 +1773,7 @@ DiskReader::maybe_xfade_loop (Sample* buf, samplepos_t read_start, samplepos_t r return; } - cerr << "maybe xfade, bo = " << bo << " vo " << vo << " n " << n << endl; + cout << "maybe xfade, bo = " << bo << " vo " << vo << " n " << n << endl; Sample* b = &buf[bo]; /* data to be faded out */ Sample* sbuf = &chan->pre_loop_buffer[vo]; /* pre-loop (maybe silence) to be faded in */ -- cgit v1.2.3