Flip the logging prefixes

This makes it easier to visually distinguish the direction of the
request.
This commit is contained in:
Robbert van der Helm
2020-12-27 23:24:42 +01:00
parent 9c3b3a0ca9
commit 047c7691e2
+2 -2
View File
@@ -224,7 +224,7 @@ class Vst3Logger {
if (is_host_vst) {
message << "[host -> vst] >> ";
} else {
message << "[host <- vst] >> ";
message << "[vst -> host] >> ";
}
callback(message);
@@ -253,7 +253,7 @@ class Vst3Logger {
void log_response_base(bool is_host_vst, F callback) {
std::ostringstream message;
if (is_host_vst) {
message << "[host -> vst] ";
message << "[vst <- host] ";
} else {
message << "[host <- vst] ";
}