|
SDL 2.0
|
Go to the source code of this file.
Macros | |
| #define | SDL_MAX_LOG_MESSAGE 4096 |
Typedefs | |
| typedef void(* | SDL_LogOutputFunction) (void *userdata, int category, SDL_LogPriority priority, const char *message) |
| #define SDL_MAX_LOG_MESSAGE 4096 |
Simple log messages with categories and priorities.
By default logs are quiet, but if you're debugging SDL you might want:
SDL_LogSetAllPriority(SDL_LOG_PRIORITY_WARN);
Here's where the messages go on different platforms:
As of 2.0.24 there is no limit to the length of SDL log messages.
| typedef void(* SDL_LogOutputFunction) (void *userdata, int category, SDL_LogPriority priority, const char *message) |
The prototype for the log output callback function.
This function is called by SDL when there is new text to be logged.
| userdata | what was passed as userdata to SDL_LogSetOutputFunction(). |
| category | the category of the message. |
| priority | the priority of the message. |
| message | the message being output. |
| enum SDL_LogCategory |
The predefined log categories
By default the application category is enabled at the INFO level, the assert category is enabled at the WARN level, test is enabled at the VERBOSE level and all other categories are enabled at the ERROR level.
Definition at line 64 of file SDL_log.h.
| enum SDL_LogPriority |
The predefined log priorities
| Enumerator | |
|---|---|
| SDL_LOG_PRIORITY_VERBOSE | |
| SDL_LOG_PRIORITY_DEBUG | |
| SDL_LOG_PRIORITY_INFO | |
| SDL_LOG_PRIORITY_WARN | |
| SDL_LOG_PRIORITY_ERROR | |
| SDL_LOG_PRIORITY_CRITICAL | |
| SDL_NUM_LOG_PRIORITIES | |
|
extern |
Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO.
= *
| fmt | a printf() style message format string |
| ... | additional parameters matching % tokens in the fmt string, if any. |
References SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNC.
|
extern |
Log a message with SDL_LOG_PRIORITY_CRITICAL.
| category | the category of the message. |
| fmt | a printf() style message format string. |
| ... | additional parameters matching % tokens in the fmt string, if any. |
References SDL_LogCritical(), SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNC.
Referenced by SDL_LogCritical().
|
extern |
Log a message with SDL_LOG_PRIORITY_DEBUG.
| category | the category of the message. |
| fmt | a printf() style message format string. |
| ... | additional parameters matching % tokens in the fmt string, if any. |
References SDL_LogDebug(), SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNC.
Referenced by SDL_LogDebug().
|
extern |
Log a message with SDL_LOG_PRIORITY_ERROR.
| category | the category of the message. |
| fmt | a printf() style message format string. |
| ... | additional parameters matching % tokens in the fmt string, if any. |
References SDL_LogError(), SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNC.
Referenced by SDL_LogError().
|
extern |
Get the current log output function.
| callback | an SDL_LogOutputFunction filled in with the current log callback. |
| userdata | a pointer filled in with the pointer that is passed to callback. |
References SDL_LogGetOutputFunction().
Referenced by SDL_LogGetOutputFunction().
|
extern |
Get the priority of a particular log category.
| category | the category to query. |
|
extern |
Log a message with SDL_LOG_PRIORITY_INFO.
| category | the category of the message. |
| fmt | a printf() style message format string. |
| ... | additional parameters matching % tokens in the fmt string, if any. |
References SDL_LogInfo(), SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNC.
Referenced by SDL_LogInfo().
|
extern |
Log a message with the specified category and priority.
| category | the category of the message. |
| priority | the priority of the message. |
| fmt | a printf() style message format string. |
| ... | additional parameters matching % tokens in the fmt string, if any. |
References SDL_LogMessage(), SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNC.
Referenced by SDL_LogMessage().
|
extern |
Log a message with the specified category and priority.
| category | the category of the message. |
| priority | the priority of the message. |
| fmt | a printf() style message format string. |
| ap | a variable argument list. |
References SDL_LogMessageV(), SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNCV.
Referenced by SDL_LogMessageV().
|
extern |
Reset all priorities to default.
This is called by SDL_Quit().
|
extern |
Set the priority of all log categories.
| priority | the SDL_LogPriority to assign. |
|
extern |
Replace the default log output function with one of your own.
| callback | an SDL_LogOutputFunction to call instead of the default. |
| userdata | a pointer that is passed to callback. |
References SDL_LogSetOutputFunction().
Referenced by SDL_LogSetOutputFunction().
|
extern |
Set the priority of a particular log category.
| category | the category to assign a priority to. |
| priority | the SDL_LogPriority to assign. |
|
extern |
Log a message with SDL_LOG_PRIORITY_VERBOSE.
| category | the category of the message. |
| fmt | a printf() style message format string. |
| ... | additional parameters matching % tokens in the fmt string, if any. |
References SDL_LogVerbose(), SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNC.
Referenced by SDL_LogVerbose().
|
extern |
Log a message with SDL_LOG_PRIORITY_WARN.
| category | the category of the message. |
| fmt | a printf() style message format string. |
| ... | additional parameters matching % tokens in the fmt string, if any. |
References SDL_LogWarn(), SDL_PRINTF_FORMAT_STRING, and SDL_PRINTF_VARARG_FUNC.
Referenced by SDL_LogWarn().