From b3095ff8df3e2ca3703a70cbc0307c0ac472935c Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Tue, 5 May 2020 08:32:45 -0400 Subject: [PATCH] Disable stdout/stderr rerouting in logger. --- src/logger.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/logger.cpp b/src/logger.cpp index 3ba0409e..6476b463 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -31,8 +31,9 @@ void init() { } // Redirect stdout and stderr to the file - dup2(fileno(outputFile), fileno(stdout)); - dup2(fileno(outputFile), fileno(stderr)); + // Actually, disable this because we don't want to steal stdout/stderr from the DAW in Rack for DAWs. + // dup2(fileno(outputFile), fileno(stdout)); + // dup2(fileno(outputFile), fileno(stderr)); } void destroy() {