sdl2/generated/lib_sdl_log library

Functions

sdlLog(String? fmt, Pointer<NativeType> arg1) → void
Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO.
sdlLogCritical(int category, String? fmt, Pointer<NativeType> arg2) → void
Log a message with SDL_LOG_PRIORITY_CRITICAL.
sdlLogDebug(int category, String? fmt, Pointer<NativeType> arg2) → void
Log a message with SDL_LOG_PRIORITY_DEBUG.
sdlLogError(int category, String? fmt, Pointer<NativeType> arg2) → void
Log a message with SDL_LOG_PRIORITY_ERROR.
sdlLogGetOutputFunction(Pointer<Pointer<NativeFunction<SdlLogOutputFunction>>> callback, Pointer<Pointer<NativeType>> userdata) → void
Get the current log output function.
sdlLogGetPriority(int category) int
Get the priority of a particular log category.
sdlLogInfo(int category, String? fmt, Pointer<NativeType> arg2) → void
Log a message with SDL_LOG_PRIORITY_INFO.
sdlLogMessage(int category, int priority, String? fmt, Pointer<NativeType> arg3) → void
Log a message with the specified category and priority.
sdlLogMessageV(int category, int priority, String? fmt, Pointer<NativeType> arg3) → void
Log a message with the specified category and priority.
sdlLogResetPriorities() → void
Reset all priorities to default.
sdlLogSetAllPriority(int priority) → void
Set the priority of all log categories.
sdlLogSetOutputFunction(Pointer<NativeFunction<SdlLogOutputFunction>> callback, Pointer<NativeType> userdata) → void
Replace the default log output function with one of your own.
sdlLogSetPriority(int category, int priority) → void
Set the priority of a particular log category.
sdlLogVerbose(int category, String? fmt, Pointer<NativeType> arg2) → void
Log a message with SDL_LOG_PRIORITY_VERBOSE.
sdlLogWarn(int category, String? fmt, Pointer<NativeType> arg2) → void
Log a message with SDL_LOG_PRIORITY_WARN.