Add PrimitiveWrapper<T> response logging

This commit is contained in:
Robbert van der Helm
2020-12-14 18:05:37 +01:00
parent e282f8c572
commit bb110e8cbb
3 changed files with 8 additions and 6 deletions
-4
View File
@@ -207,10 +207,6 @@ void Vst3Logger::log_request(bool is_host_vst, const WantsConfiguration&) {
});
}
void Vst3Logger::log_response(bool is_host_vst, const uint32& value) {
log_response_base(is_host_vst, [&](auto& message) { message << value; });
}
void Vst3Logger::log_response(bool is_host_vst, const Ack&) {
log_response_base(is_host_vst, [&](auto& message) { message << "ACK"; });
}