From f54098618ee38bc82c131cc860d9feca6730631e Mon Sep 17 00:00:00 2001 From: Michael Burgardt Date: Wed, 31 Mar 2021 17:57:22 +0200 Subject: [PATCH] RARCH_LOG_V checking for verbosity level is not necessary and can cause issues; removed said check. --- verbosity.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/verbosity.c b/verbosity.c index a45dc977bd..6c08ea7911 100644 --- a/verbosity.c +++ b/verbosity.c @@ -214,8 +214,6 @@ void retro_main_log_file_deinit(void) void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap) { verbosity_state_t *g_verbosity = &main_verbosity_st; - if (verbosity_log_level > 1) - return; { const char *tag_v = tag ? tag : FILE_PATH_LOG_INFO;