From ce46b791eaa19e1fc4de61c2c352219d5edfe439 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 12 Aug 2022 16:08:23 +0200 Subject: [PATCH] VST3 scan: don't clutter log with bus-info messages --- libs/ardour/vst3_scan.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/vst3_scan.cc b/libs/ardour/vst3_scan.cc index 55ececf3cf..67a8bfbc10 100644 --- a/libs/ardour/vst3_scan.cc +++ b/libs/ardour/vst3_scan.cc @@ -109,7 +109,7 @@ count_channels (Vst::IComponent* c, Vst::MediaType media, Vst::BusDirection dir, } } else if (verbose && rv == kResultTrue) { PBD::info << "VST3: \\ ignored bus: " << i << " mismatched type: " << fmt_type (bus.busType) << endmsg; - } else { + } else if (verbose) { PBD::info << "VST3: \\ error getting busInfo for bus: " << i << " rv: " << rv << ", got type: " << fmt_type (bus.busType) << endmsg; } }