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:
parent
0527d77de1
commit
327f220857
|
@ -360,7 +360,7 @@ void RARCH_DBG(const char *fmt, ...)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
va_start(ap, fmt);
|
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);
|
va_end(ap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
RETRO_BEGIN_DECLS
|
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_INFO "[INFO]"
|
||||||
#define FILE_PATH_LOG_ERROR "[ERROR]"
|
#define FILE_PATH_LOG_ERROR "[ERROR]"
|
||||||
#define FILE_PATH_LOG_WARN "[WARN]"
|
#define FILE_PATH_LOG_WARN "[WARN]"
|
||||||
|
|
Loading…
Reference in New Issue