SDL_SetLogPriorityPrefix - Set the text prepended to log messages of a given priority.
Contents
Availability
This function is available since SDL 3.2.0.
Description
By default SDL_LOG_PRIORITY_INFO
and below have no prefix, and SDL_LOG_PRIORITY_WARN
and higher have a prefix showing their priority, e.g. "WARNING: ".
Function Parameters
priority
the SDL_LogPriority
to modify.
prefix the prefix to use for that log priority, or NULL to use no prefix.
Header File
Defined in SDL3/SDL_log.h
Name
SDL_SetLogPriorityPrefix - Set the text prepended to log messages of a given priority.
Return Value
Returns true on success or false on failure; call
SDL_GetError () for more information.
See Also
•(3), SDL_SetLogPriorities(3), •(3), SDL_SetLogPriority(3) Simple Directmedia Layer SDL 3.2.10 SDL_SetLogPriorityPrefix(3)
Synopsis
#include"SDL3/SDL.h"boolSDL_SetLogPriorityPrefix(SDL_LogPrioritypriority,constchar*prefix);
Thread Safety
It is safe to call this function from any thread.
