mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
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
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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]"
|
||||
|
|
Loading…
Add table
Reference in a new issue