Fix debug-level logging definitions

Both INFO and DEBUGGING log functions were outputting [INFO] logs.
I switched the debug log function to output debug logs instead of info logs, and changed the output of debug logs from [VERBOSE] to [DEBUG]
This commit is contained in:
Adie 2021-08-02 22:58:39 -05:00
parent 0527d77de1
commit 327f220857
2 changed files with 2 additions and 2 deletions

View File

@ -360,7 +360,7 @@ void RARCH_DBG(const char *fmt, ...)
return;
va_start(ap, fmt);
RARCH_LOG_V(FILE_PATH_LOG_INFO, fmt, ap);
RARCH_LOG_V(FILE_PATH_LOG_DBG, fmt, ap);
va_end(ap);
}

View File

@ -28,7 +28,7 @@
RETRO_BEGIN_DECLS
#define FILE_PATH_LOG_DBG "[VERBOSE]"
#define FILE_PATH_LOG_DBG "[DEBUG]"
#define FILE_PATH_LOG_INFO "[INFO]"
#define FILE_PATH_LOG_ERROR "[ERROR]"
#define FILE_PATH_LOG_WARN "[WARN]"