mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +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]] {
|
if (logger_.verbosity_ >= min_verbosity) [[unlikely]] {
|
||||||
std::ostringstream message;
|
std::ostringstream message;
|
||||||
if (is_host_plugin) {
|
if (is_host_plugin) {
|
||||||
message << "[host -> vst] >> ";
|
message << "[host -> plugin] >> ";
|
||||||
} else {
|
} else {
|
||||||
message << "[vst -> host] >> ";
|
message << "[plugin -> host] >> ";
|
||||||
}
|
}
|
||||||
|
|
||||||
callback(message);
|
callback(message);
|
||||||
|
|||||||
@@ -388,9 +388,9 @@ class Vst3Logger {
|
|||||||
if (logger_.verbosity_ >= min_verbosity) [[unlikely]] {
|
if (logger_.verbosity_ >= min_verbosity) [[unlikely]] {
|
||||||
std::ostringstream message;
|
std::ostringstream message;
|
||||||
if (is_host_plugin) {
|
if (is_host_plugin) {
|
||||||
message << "[host -> vst] >> ";
|
message << "[host -> plugin] >> ";
|
||||||
} else {
|
} else {
|
||||||
message << "[vst -> host] >> ";
|
message << "[plugin -> host] >> ";
|
||||||
}
|
}
|
||||||
|
|
||||||
callback(message);
|
callback(message);
|
||||||
|
|||||||
Reference in New Issue
Block a user