summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/raylib.h1
-rw-r--r--src/utils.c6
2 files changed, 0 insertions, 7 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 9116729a..4703ea5b 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -972,7 +972,6 @@ RLAPI double GetTime(void); // Returns ela
RLAPI void SetConfigFlags(unsigned int flags); // Setup init configuration flags (view FLAGS)
RLAPI void SetTraceLogLevel(int logType); // Set the current threshold (minimum) log level
-RLAPI void SetTraceLogExit(int logType); // Set the exit threshold (minimum) log level
RLAPI void SetTraceLogCallback(TraceLogCallback callback); // Set a trace log callback to enable custom logging
RLAPI void TraceLog(int logType, const char *text, ...); // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR)
diff --git a/src/utils.c b/src/utils.c
index de3acac9..42830115 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -97,12 +97,6 @@ void SetTraceLogLevel(int logType)
logTypeLevel = logType;
}
-// Set the exit threshold (minimum) log level
-void SetTraceLogExit(int logType)
-{
- logTypeExit = logType;
-}
-
// Set a trace log callback to enable custom logging
void SetTraceLogCallback(TraceLogCallback callback)
{