Adding function to control the "exit-on-error" behaviour.

This commit is contained in:
Marco Lizza 2019-01-20 22:24:41 +01:00
parent 932e9dbd09
commit f1d13aa469
2 changed files with 9 additions and 1 deletions

View file

@ -54,6 +54,7 @@
// Log types messages
static TraceLogType logTypeLevel = LOG_INFO;
static TraceLogType logTypeExit = LOG_ERROR;
static TraceLogCallback logCallback = NULL;
#if defined(PLATFORM_ANDROID)
@ -85,6 +86,12 @@ void SetTraceLogLevel(TraceLogType logType)
logTypeLevel = logType;
}
// Set the exit threshold (minimum) log level.
void SetTraceLogExit(TraceLogType logType)
{
logTypeExit = logType;
}
// Set a trace log callback to enable custom logging bypassing raylib's one
void SetTraceLogCallback(TraceLogCallback callback)
{
@ -141,7 +148,7 @@ void TraceLog(TraceLogType logType, const char *text, ...)
va_end(args);
if (msgType == LOG_ERROR) exit(1); // If LOG_ERROR message, exit program
if (logType >= logTypeExit) exit(1); // If exit message, exit program
#endif // SUPPORT_TRACELOG
}