Print traces on windows to stderr

This commit is contained in:
Yon Uriarte 2024-02-10 19:05:21 +00:00 committed by Mark Roszko
parent 5a5cb218ea
commit 5819ad274f
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ void TRACE_MANAGER::traceV( const wxString& aWhat, const wxString& aFmt, va_list
wxString str;
str.PrintfV( aFmt, vargs );
#ifdef __unix__
#if defined( __UNIX__ ) || defined( _WIN32 )
fprintf( stderr, " %-30s | %s", aWhat.c_str().AsChar(), str.c_str().AsChar() );
#endif
}