diff --git a/src/common/logging/vst3.cpp b/src/common/logging/vst3.cpp index b1b2f355..ca375c0f 100644 --- a/src/common/logging/vst3.cpp +++ b/src/common/logging/vst3.cpp @@ -676,6 +676,15 @@ bool Vst3Logger::log_request(bool is_host_vst, }); } +bool Vst3Logger::log_request( + bool is_host_vst, + const YaProcessContextRequirements::GetProcessContextRequirements&) { + return log_request_base(is_host_vst, [&](auto& message) { + message + << "IProcessContextRequirements::getProcessContextRequirements()"; + }); +} + bool Vst3Logger::log_request(bool is_host_vst, const YaProgramListData::ProgramDataSupported&) { return log_request_base(is_host_vst, [&](auto& message) { diff --git a/src/common/logging/vst3.h b/src/common/logging/vst3.h index 5440ad80..116bcef0 100644 --- a/src/common/logging/vst3.h +++ b/src/common/logging/vst3.h @@ -148,6 +148,9 @@ class Vst3Logger { bool log_request(bool is_host_vst, const YaPluginBase::Terminate&); bool log_request(bool is_host_vst, const YaPluginFactory::Construct&); bool log_request(bool is_host_vst, const YaPluginFactory::SetHostContext&); + bool log_request( + bool is_host_vst, + const YaProcessContextRequirements::GetProcessContextRequirements&); bool log_request(bool is_host_vst, const YaProgramListData::ProgramDataSupported&); bool log_request(bool is_host_vst,