mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Rename vst to plugin in log message prefix
This commit is contained in:
@@ -137,9 +137,9 @@ class ClapLogger {
|
|||||||
void log_response_base(bool is_host_plugin, F callback) {
|
void log_response_base(bool is_host_plugin, F callback) {
|
||||||
std::ostringstream message;
|
std::ostringstream message;
|
||||||
if (is_host_plugin) {
|
if (is_host_plugin) {
|
||||||
message << "[vst <- host] ";
|
message << "[plugin <- host] ";
|
||||||
} else {
|
} else {
|
||||||
message << "[host <- vst] ";
|
message << "[host <- plugin] ";
|
||||||
}
|
}
|
||||||
|
|
||||||
callback(message);
|
callback(message);
|
||||||
|
|||||||
@@ -414,9 +414,9 @@ class Vst3Logger {
|
|||||||
void log_response_base(bool is_host_plugin, F callback) {
|
void log_response_base(bool is_host_plugin, F callback) {
|
||||||
std::ostringstream message;
|
std::ostringstream message;
|
||||||
if (is_host_plugin) {
|
if (is_host_plugin) {
|
||||||
message << "[vst <- host] ";
|
message << "[plugin <- host] ";
|
||||||
} else {
|
} else {
|
||||||
message << "[host <- vst] ";
|
message << "[host <- plugin] ";
|
||||||
}
|
}
|
||||||
|
|
||||||
callback(message);
|
callback(message);
|
||||||
|
|||||||
Reference in New Issue
Block a user