Add todos for logging IAtributeList keys

This commit is contained in:
Robbert van der Helm
2021-01-12 17:16:35 +01:00
parent 631166d0bf
commit 661e916eef
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -30,6 +30,7 @@ std::string format_bstream(const YaBStream& stream) {
std::ostringstream formatted;
formatted << "<IBStream* ";
if (stream.supports_stream_attributes) {
// TODO: Log the keys for the stored values
formatted << "with meta data ";
}
if (stream.file_name) {
@@ -369,9 +370,10 @@ bool Vst3Logger::log_request(
bool is_host_vst,
const YaInfoListener::SetChannelContextInfos& request) {
return log_request_base(is_host_vst, [&](auto& message) {
// TODO: Log the keys for the values provided by the host
message << request.instance_id
<< ": IInfoListener::setChannelContextInfos(list = "
"<IAtributeList*>)";
"<IAttributeList*>)";
});
}
@@ -16,6 +16,8 @@
#include "attribute-list.h"
#include <iostream>
#include <pluginterfaces/vst/vstpresetkeys.h>
#include "pluginterfaces/vst/ivstchannelcontextinfo.h"