From d1a38aec8ed18dd6b47f8550d694373b6c4018c0 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Fri, 9 Sep 2022 16:27:43 +0200 Subject: [PATCH] Rename vst to plugin in log message prefix --- src/common/logging/clap.h | 4 ++-- src/common/logging/vst3.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/logging/clap.h b/src/common/logging/clap.h index b0186040..e7b25c3e 100644 --- a/src/common/logging/clap.h +++ b/src/common/logging/clap.h @@ -137,9 +137,9 @@ class ClapLogger { void log_response_base(bool is_host_plugin, F callback) { std::ostringstream message; if (is_host_plugin) { - message << "[vst <- host] "; + message << "[plugin <- host] "; } else { - message << "[host <- vst] "; + message << "[host <- plugin] "; } callback(message); diff --git a/src/common/logging/vst3.h b/src/common/logging/vst3.h index bad25399..11da8f14 100644 --- a/src/common/logging/vst3.h +++ b/src/common/logging/vst3.h @@ -414,9 +414,9 @@ class Vst3Logger { void log_response_base(bool is_host_plugin, F callback) { std::ostringstream message; if (is_host_plugin) { - message << "[vst <- host] "; + message << "[plugin <- host] "; } else { - message << "[host <- vst] "; + message << "[host <- plugin] "; } callback(message);