mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
Fix prefixes in VST3/CLAP log requests
This commit is contained in:
@@ -135,9 +135,9 @@ class ClapLogger {
|
||||
if (logger_.verbosity_ >= min_verbosity) [[unlikely]] {
|
||||
std::ostringstream message;
|
||||
if (is_host_plugin) {
|
||||
message << "[host -> vst] >> ";
|
||||
message << "[host -> plugin] >> ";
|
||||
} else {
|
||||
message << "[vst -> host] >> ";
|
||||
message << "[plugin -> host] >> ";
|
||||
}
|
||||
|
||||
callback(message);
|
||||
|
||||
@@ -388,9 +388,9 @@ class Vst3Logger {
|
||||
if (logger_.verbosity_ >= min_verbosity) [[unlikely]] {
|
||||
std::ostringstream message;
|
||||
if (is_host_plugin) {
|
||||
message << "[host -> vst] >> ";
|
||||
message << "[host -> plugin] >> ";
|
||||
} else {
|
||||
message << "[vst -> host] >> ";
|
||||
message << "[plugin -> host] >> ";
|
||||
}
|
||||
|
||||
callback(message);
|
||||
|
||||
Reference in New Issue
Block a user