#pragma section-numbers off #pragma camelcase off = SDL_LogMessageV = Use this function to log a message with the specified category and priority. This version of [[SDL_LogMessage]]() uses a stdarg variadic argument list. <> == Syntax == {{{#!highlight cpp void SDL_LogMessageV(int category, SDL_LogPriority priority, const char* fmt, va_list ap) }}} == Function Parameters == ||'''category'''||the category of the message; see [[#category|Remarks]] for details|| ||'''priority'''||the priority of the message; see [[#priority|Remarks]] for details|| ||'''fmt'''||a printf() style message format string|| ||'''ap'''||a variable argument list|| == Code Examples == {{{#!highlight cpp You can add your code example here }}} == Remarks == <> The '''category''' can be one of: <> <> The '''priority''' can be one of: <> == Version == This function is available since SDL 2.0.0. == Related Functions == .[[SDL_Log]] .[[SDL_LogCritical]] .[[SDL_LogDebug]] .[[SDL_LogError]] .[[SDL_LogInfo]] .[[SDL_LogMessage]] .[[SDL_LogVerbose]] .[[SDL_LogWarn]] ---- [[CategoryAPI]], [[CategoryLog]]