pub unsafe extern "C" fn SDL_LogDebug(
category: c_int,
fmt: *const c_char,
...
)Expand description
Log a message with SDL_LOG_PRIORITY_DEBUG.
Parameter: category the category of the message.
Parameter: fmt a printf() style message format string.
Parameter: … additional parameters matching % tokens in the fmt string, if any.
Thread Safety: It is safe to call this function from any thread.
Available Since: This function is available since SDL 3.2.0.
See Also: SDL_Log
See Also: SDL_LogCritical
See Also: SDL_LogError
See Also: SDL_LogInfo
See Also: SDL_LogMessage
See Also: SDL_LogMessageV
See Also: SDL_LogTrace
See Also: SDL_LogVerbose
See Also: SDL_LogWarn