mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Only log IComponent::getBusCount() on verbosity 2
This commit is contained in:
@@ -226,11 +226,14 @@ bool Vst3Logger::log_request(bool is_host_vst,
|
|||||||
|
|
||||||
bool Vst3Logger::log_request(bool is_host_vst,
|
bool Vst3Logger::log_request(bool is_host_vst,
|
||||||
const YaComponent::GetBusCount& request) {
|
const YaComponent::GetBusCount& request) {
|
||||||
return log_request_base(is_host_vst, [&](auto& message) {
|
// JUCE-based hosts will call this every processing cycle, for some reason
|
||||||
message << request.instance_id
|
// (it shouldn't be allwoed to change during processing, right?)
|
||||||
<< ": IComponent::getBusCount(type = " << request.type
|
return log_request_base(
|
||||||
<< ", dir = " << request.dir << ")";
|
is_host_vst, Logger::Verbosity::all_events, [&](auto& message) {
|
||||||
});
|
message << request.instance_id
|
||||||
|
<< ": IComponent::getBusCount(type = " << request.type
|
||||||
|
<< ", 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