mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-20 11:02:52 +02:00
Add logging for IMidiLearn
This commit is contained in:
@@ -400,6 +400,17 @@ bool Vst3Logger::log_request(
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Vst3Logger::log_request(
|
||||||
|
bool is_host_vst,
|
||||||
|
const YaMidiLearn::OnLiveMIDIControllerInput& request) {
|
||||||
|
return log_request_base(is_host_vst, [&](auto& message) {
|
||||||
|
message << request.instance_id
|
||||||
|
<< ": IMidiLearn::onLiveMIDIControllerInput(busIndex = "
|
||||||
|
<< request.bus_index << ", channel = " << request.channel
|
||||||
|
<< ", midiCC = " << request.midi_cc << ")";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
bool Vst3Logger::log_request(
|
bool Vst3Logger::log_request(
|
||||||
bool is_host_vst,
|
bool is_host_vst,
|
||||||
const YaMidiMapping::GetMidiControllerAssignment& request) {
|
const YaMidiMapping::GetMidiControllerAssignment& request) {
|
||||||
|
|||||||
@@ -110,6 +110,8 @@ class Vst3Logger {
|
|||||||
const YaKeyswitchController::GetKeyswitchCount&);
|
const YaKeyswitchController::GetKeyswitchCount&);
|
||||||
bool log_request(bool is_host_vst,
|
bool log_request(bool is_host_vst,
|
||||||
const YaKeyswitchController::GetKeyswitchInfo&);
|
const YaKeyswitchController::GetKeyswitchInfo&);
|
||||||
|
bool log_request(bool is_host_vst,
|
||||||
|
const YaMidiLearn::OnLiveMIDIControllerInput&);
|
||||||
bool log_request(bool is_host_vst,
|
bool log_request(bool is_host_vst,
|
||||||
const YaMidiMapping::GetMidiControllerAssignment&);
|
const YaMidiMapping::GetMidiControllerAssignment&);
|
||||||
bool log_request(bool is_host_vst,
|
bool log_request(bool is_host_vst,
|
||||||
|
|||||||
Reference in New Issue
Block a user