From 047c7691e299667390e35685fa6c2b68c9a0a8df Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 27 Dec 2020 23:24:42 +0100 Subject: [PATCH] Flip the logging prefixes This makes it easier to visually distinguish the direction of the request. --- 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 2e9a0b1f..7f95fe2d 100644 --- a/src/common/logging/vst3.h +++ b/src/common/logging/vst3.h @@ -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] "; }