From 9858db25d242f2544dafa942125bd4323a3a2ddd Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 30 Jan 2021 01:50:13 +0100 Subject: [PATCH] Show IComponent::getBusCount on verbosity level 1 The only reason this was hidden is because REAPER spams it, but it also spams `IComponent::getBusInfo` which we cannot hide. --- src/common/logging/vst3.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/common/logging/vst3.cpp b/src/common/logging/vst3.cpp index 259a27a6..fca09c53 100644 --- a/src/common/logging/vst3.cpp +++ b/src/common/logging/vst3.cpp @@ -1061,12 +1061,11 @@ bool Vst3Logger::log_request(bool is_host_vst, const YaComponent::GetBusCount& request) { // JUCE-based hosts will call this every processing cycle, for some reason // (it shouldn't be allwoed to change during processing, right?) - return log_request_base( - is_host_vst, Logger::Verbosity::all_events, [&](auto& message) { - message << request.instance_id - << ": IComponent::getBusCount(type = " << request.type - << ", dir = " << request.dir << ")"; - }); + return log_request_base(is_host_vst, [&](auto& message) { + message << request.instance_id + << ": IComponent::getBusCount(type = " << request.type + << ", dir = " << request.dir << ")"; + }); } bool Vst3Logger::log_request(bool is_host_vst,