13
0

VST3 scan: don't clutter log with bus-info messages

This commit is contained in:
Robin Gareus 2022-08-12 16:08:23 +02:00
parent 839400f438
commit ce46b791ea
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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;
}
}