From 231a0293cb19e2b0b09885b5bb6bd9e75a5cd899 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 17 Dec 2020 14:40:49 +0100 Subject: [PATCH] Change VST3 log message direction prefix It looks much mess noisy this way at the cost of maybe being slightly less clear at a glance. --- src/common/logging/vst3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/logging/vst3.h b/src/common/logging/vst3.h index 36d04315..8360b828 100644 --- a/src/common/logging/vst3.h +++ b/src/common/logging/vst3.h @@ -122,7 +122,7 @@ class Vst3Logger { if (is_host_vst) { message << "[host -> vst] >> "; } else { - message << "[vst -> host] >> "; + message << "[host <- vst] >> "; } callback(message); @@ -142,7 +142,7 @@ class Vst3Logger { if (is_host_vst) { message << "[host -> vst] "; } else { - message << "[vst -> host] "; + message << "[host <- vst] "; } callback(message);