7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-14 12:09:35 +00:00

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

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
}