From f7901266b7104f46004f19757e6c756fd5eea4e0 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 18 May 2021 13:39:49 +0200 Subject: [PATCH] Use STDERR for all output in the Wine plugin hosts --- src/wine-host/individual-host.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wine-host/individual-host.cpp b/src/wine-host/individual-host.cpp index c536cab0..9a37c169 100644 --- a/src/wine-host/individual-host.cpp +++ b/src/wine-host/individual-host.cpp @@ -63,12 +63,12 @@ __cdecl const std::string socket_endpoint_path(argv[3]); const pid_t parent_pid = std::stoi(argv[4]); - std::cout << "Initializing yabridge host version " << yabridge_git_version + std::cerr << "Initializing yabridge host version " << yabridge_git_version #ifdef __i386__ << " (32-bit compatibility mode)" #endif << std::endl; - std::cout << "Preparing to load " << plugin_type_to_string(plugin_type) + std::cerr << "Preparing to load " << plugin_type_to_string(plugin_type) << " plugin at '" << plugin_location << "'" << std::endl; // As explained in `Vst2Bridge`, the plugin has to be initialized in the @@ -134,7 +134,7 @@ __cdecl TerminateProcess(GetCurrentProcess(), 0); }); - std::cout << "Finished initializing '" << plugin_location << "'" + std::cerr << "Finished initializing '" << plugin_location << "'" << std::endl; // Handle Win32 messages and X11 events on a timer, just like in