Function SDL_GetLogPriority

pub unsafe extern "C" fn SDL_GetLogPriority(
    category: i32,
) -> SDL_LogPriority
Available on crate feature dep_sdl3 only.
Expand description

Get the priority of a particular log category.

§Parameters

  • category: the category to query.

§Return value

Returns the SDL_LogPriority for the requested category.

§Thread safety

It is safe to call this function from any thread.

§Availability

This function is available since SDL 3.2.0.

§See also