mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2025-01-09 09:55:48 +01:00
engine: common: enabled printing logs to stderr for psvita platform only in developer mode
This commit is contained in:
parent
575179dbf5
commit
48e199bfa1
@ -265,11 +265,19 @@ static void Sys_PrintStdout( const char *logtime, const char *msg )
|
||||
IOS_Log( buf );
|
||||
#endif // TARGET_OS_IOS
|
||||
|
||||
#if (XASH_NSWITCH && NSWITCH_DEBUG) || XASH_PSVITA // REMOVEME
|
||||
#if XASH_NSWITCH && NSWITCH_DEBUG
|
||||
// just spew it to stderr normally in debug mode
|
||||
fprintf( stderr, "%s %s", logtime, buf );
|
||||
#endif // XASH_NSWITCH && NSWITCH_DEBUG
|
||||
|
||||
#if XASH_PSVITA
|
||||
// spew to stderr only in developer mode
|
||||
if( host_developer.value )
|
||||
{
|
||||
fprintf( stderr, "%s %s", logtime, buf );
|
||||
}
|
||||
#endif
|
||||
|
||||
#elif !XASH_WIN32 // Wcon does the job
|
||||
Sys_PrintLogfile( STDOUT_FILENO, logtime, msg, XASH_COLORIZE_CONSOLE );
|
||||
Sys_FlushStdout();
|
||||
|
Loading…
Reference in New Issue
Block a user