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:
parent
5a5cb218ea
commit
5819ad274f
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user