Skip to main content

SDL_SetLogPriority

Function SDL_SetLogPriority 

Source
pub unsafe extern "C" fn SDL_SetLogPriority(
    category: c_int,
    priority: SDL_LogPriority,
)
Expand description

Set the priority of a particular log category.

Parameter: category the category to assign a priority to. Parameter: priority the SDL_LogPriority to assign.

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_GetLogPriority See Also: SDL_ResetLogPriorities See Also: SDL_SetLogPriorities