#pragma section-numbers off #pragma camelcase off = SDL_LogPriority = An enumeration of the predefined log priorities. <> == Values == ##The following content is included on `SDL_LogSetAllPriority, SDL_LogSetPriority, SDL_LogMessage, SDL_LogMessageV`. Any changes between these comments will be reflected there as well. Please use caution when editing. Start Include here. ||SDL_LOG_PRIORITY_VERBOSE|||| ||SDL_LOG_PRIORITY_DEBUG|||| ||SDL_LOG_PRIORITY_INFO|||| ||SDL_LOG_PRIORITY_WARN|||| ||SDL_LOG_PRIORITY_ERROR|||| ||SDL_LOG_PRIORITY_CRITICAL|||| ||SDL_NUM_LOG_PRIORITIES||(internal use)|| ##End Include here. == Code Examples == {{{#!highlight cpp You can add your code example here }}} == Remarks == ## Start Include Default Priority The default log priorities are as follows: ||`SDL_LOG_CATEGORY_APPLICATION`||`SDL_LOG_PRIORITY_INFO`|| ||`SDL_LOG_CATEGORY_ASSERT`||`SDL_LOG_PRIORITY_WARN`|| ||`SDL_LOG_CATEGORY_TEST`||`SDL_LOG_PRIORITY_VERBOSE`|| ||everything else||`SDL_LOG_PRIORITY_CRITICAL`|| ## End Include Default Priority If you're debugging SDL you might want to call: {{{SDL_LogSetAllPriority(SDL_LOG_PRIORITY_WARN);}}} == Related Functions == .[[SDL_LogMessage]] .[[SDL_LogMessageV]] .[[SDL_LogSetAllPriority]] .[[SDL_LogSetPriority]] ---- [[CategoryEnum]], [[CategoryLog]]