From 9682446fab4c61e43d65f154a48c10c46c8651db Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 10 Nov 2021 20:41:32 +0100 Subject: [PATCH] Remove incorrect line feeds from log output These were probably added here out of habit. --- src/common/logging/vst3.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/logging/vst3.cpp b/src/common/logging/vst3.cpp index 06e6e55c..b1eafde0 100644 --- a/src/common/logging/vst3.cpp +++ b/src/common/logging/vst3.cpp @@ -1019,7 +1019,7 @@ bool Vst3Logger::log_request( buffers.silenceFlags < (static_cast(1) << static_cast(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(1) << static_cast(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(1) << static_cast(buffers.numChannels))) { - num_output_channels << " (silence)" << std::endl; + num_output_channels << " (silence)"; } is_first = false;