diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,4 @@ #include "../include/al/log.h" -#include "../include/al/macros.h" //#define AL_LOG_SKIP #define AL_LOG_TEMPLATE "%s:%d %s(): %s -> " @@ -21,7 +20,8 @@ static const char *levels[] = { [AL_LOG_INFO] = "info", [AL_LOG_WARN] = "warn", [AL_LOG_ERROR] = "error", - [AL_LOG_DEBUG] = "debug" + [AL_LOG_DEBUG] = "debug", + [AL_LOG_TRACE] = "trace" }; #ifndef AL_LOG_SKIP |