mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-06 19:40:10 +02:00
Remove incorrect line feeds from log output
These were probably added here out of habit.
This commit is contained in:
@@ -1019,7 +1019,7 @@ bool Vst3Logger::log_request(
|
||||
buffers.silenceFlags <
|
||||
(static_cast<uint64>(1)
|
||||
<< static_cast<uint64>(buffers.numChannels))) {
|
||||
num_input_channels << " (silence)" << std::endl;
|
||||
num_input_channels << " (silence)";
|
||||
}
|
||||
|
||||
is_first = false;
|
||||
@@ -1036,7 +1036,7 @@ bool Vst3Logger::log_request(
|
||||
buffers.silenceFlags <
|
||||
(static_cast<uint64>(1)
|
||||
<< static_cast<uint64>(buffers.numChannels))) {
|
||||
num_output_channels << " (silence)" << std::endl;
|
||||
num_output_channels << " (silence)";
|
||||
}
|
||||
|
||||
is_first = false;
|
||||
@@ -1827,7 +1827,7 @@ void Vst3Logger::log_response(
|
||||
buffers.silenceFlags <
|
||||
(static_cast<uint64>(1)
|
||||
<< static_cast<uint64>(buffers.numChannels))) {
|
||||
num_output_channels << " (silence)" << std::endl;
|
||||
num_output_channels << " (silence)";
|
||||
}
|
||||
|
||||
is_first = false;
|
||||
|
||||
Reference in New Issue
Block a user