Reworking log level as incremental.

This commit is contained in:
Marco Lizza 2019-01-20 22:22:21 +01:00
parent 3703430f57
commit c1c801e5c3
3 changed files with 22 additions and 14 deletions

View file

@ -171,11 +171,14 @@ typedef struct MusicData {
#if defined(RAUDIO_STANDALONE)
typedef enum {
LOG_INFO = 0,
LOG_ERROR,
LOG_WARNING,
LOG_ALL,
LOG_TRACE,
LOG_DEBUG,
LOG_OTHER
LOG_INFO,
LOG_WARN,
LOG_ERROR,
LOG_FATAL,
LOG_NONE
} TraceLogType;
#endif