mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +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) {
|
const YaComponent::GetBusCount& request) {
|
||||||
// JUCE-based hosts will call this every processing cycle, for some reason
|
// JUCE-based hosts will call this every processing cycle, for some reason
|
||||||
// (it shouldn't be allwoed to change during processing, right?)
|
// (it shouldn't be allwoed to change during processing, right?)
|
||||||
return log_request_base(
|
return log_request_base(is_host_vst, [&](auto& message) {
|
||||||
is_host_vst, Logger::Verbosity::all_events, [&](auto& message) {
|
message << request.instance_id
|
||||||
message << request.instance_id
|
<< ": IComponent::getBusCount(type = " << request.type
|
||||||
<< ": IComponent::getBusCount(type = " << request.type
|
<< ", dir = " << request.dir << ")";
|
||||||
<< ", dir = " << request.dir << ")";
|
});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Vst3Logger::log_request(bool is_host_vst,
|
bool Vst3Logger::log_request(bool is_host_vst,
|
||||||
|
|||||||
Reference in New Issue
Block a user