namespace Raylib_cs { /// Trace log level /// NOTE: Organized by priority level public enum TraceLogLevel { /// /// Display all logs /// LOG_ALL = 0, /// /// Trace logging, intended for internal use only /// LOG_TRACE, /// /// Debug logging, used for internal debugging, it should be disabled on release builds /// LOG_DEBUG, /// /// Info logging, used for program execution info /// LOG_INFO, /// /// Warning logging, used on recoverable failures /// LOG_WARNING, /// /// Error logging, used on unrecoverable failures /// LOG_ERROR, /// /// Fatal logging, used to abort program: exit(EXIT_FAILURE) /// LOG_FATAL, /// /// Disable logging /// LOG_NONE } }