From: Francois Gouget <fgouget(a)codeweavers.com> There is no reason for Wine to unconditionally pollute stderr. --- programs/wineboot/wineboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/wineboot/wineboot.c b/programs/wineboot/wineboot.c index 134d7eeffc7..cd03b85ffc5 100644 --- a/programs/wineboot/wineboot.c +++ b/programs/wineboot/wineboot.c @@ -1612,7 +1612,7 @@ static void update_wineprefix( BOOL force ) install_root_pnp_devices(); update_user_profile(); - WINE_MESSAGE( "wine: configuration in %s has been updated.\n", debugstr_w(prettyprint_configdir()) ); + WINE_TRACE( "wine: configuration in %s has been updated.\n", debugstr_w(prettyprint_configdir()) ); } done: -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6147