Merge pull request #12212 from DisasterMo/logging

Removed check for verbosity level in RARCH_LOG_V
This commit is contained in:
Autechre 2021-03-31 21:08:51 +02:00 committed by GitHub
commit 21b2ec6bd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;