mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
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.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user