SDL2 API: 01.Basics - 04 - Log Handling Flashcards
SDL_Log
Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO.
SDL_LogCritical
Log a message with SDL_LOG_PRIORITY_CRITICAL.
SDL_LogDebug
Log a message with SDL_LOG_PRIORITY_DEBUG.
SDL_LogError
Log a message with SDL_LOG_PRIORITY_ERROR.
SDL_LogGetOutputFunction
Get the current log output function.
SDL_LogGetPriority
Get the priority of a particular log category.
SDL_LogInfo
Log a message with SDL_LOG_PRIORITY_INFO.
SDL_LogMessage
Log a message with the specified category and priority.
SDL_LogMessageV
Log a message with the specified category and priority. This version of SDL_LogMessage() uses a stdarg variadic argument list.
SDL_LogResetPriorities
Reset all priorities to default.
SDL_LogSetAllPriority
Set the priority of all log categories.
SDL_LogSetOutputFunction
Replace the default log output function with one of your own.
SDL_LogSetPriority
Set the priority of a particular log category.
SDL_LogVerbose
Log a message with SDL_LOG_PRIORITY_VERBOSE.
SDL_LogWarn
Log a message with SDL_LOG_PRIORITY_WARN.