Skip to content

Commit 3d5c02e

Browse files
committed
lower raylib loglevel default to error
1 parent 6fd43ee commit 3d5c02e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Renderer/raylib/rlutils.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
//----------------------------------------------------------------------------------
6060
// Global Variables Definition
6161
//----------------------------------------------------------------------------------
62-
static int logTypeLevel = LOG_INFO; // Minimum log type level
62+
static int logTypeLevel = LOG_ERROR; // Minimum log type level
6363

6464
static TraceLogCallback traceLog = NULL; // TraceLog callback function pointer
6565
static LoadFileDataCallback loadFileData = NULL; // LoadFileData callback function pointer
@@ -509,4 +509,4 @@ static int android_close(void *cookie)
509509
}
510510
#endif // PLATFORM_ANDROID
511511

512-
#endif
512+
#endif

0 commit comments

Comments
 (0)