(Settings) Libretro log level should be available again

(Logging) SET_SUBSYSTEM_INFO and GET_VARIABLE should only
do verbose logging if libretro logging level is set to DEBUG
This commit is contained in:
twinaphex 2019-04-28 01:55:49 +02:00
parent 9fbc3c0769
commit 415646111b
3 changed files with 39 additions and 31 deletions

View File

@ -197,11 +197,19 @@ static bool environ_cb_get_system_info(unsigned cmd, void *data)
unsigned i, j, size; unsigned i, j, size;
const struct retro_subsystem_info *info = const struct retro_subsystem_info *info =
(const struct retro_subsystem_info*)data; (const struct retro_subsystem_info*)data;
settings_t *settings = config_get_ptr();
unsigned log_level = settings->uints.libretro_log_level;
subsystem_current_count = 0; subsystem_current_count = 0;
if (log_level == RETRO_LOG_DEBUG)
RARCH_LOG("Environ SET_SUBSYSTEM_INFO.\n"); RARCH_LOG("Environ SET_SUBSYSTEM_INFO.\n");
for (i = 0; info[i].ident; i++) for (i = 0; info[i].ident; i++)
{ {
if (log_level != RETRO_LOG_DEBUG)
continue;
RARCH_LOG("Subsystem ID: %d\n", i); RARCH_LOG("Subsystem ID: %d\n", i);
RARCH_LOG("Special game type: %s\n", info[i].desc); RARCH_LOG("Special game type: %s\n", info[i].desc);
RARCH_LOG(" Ident: %s\n", info[i].ident); RARCH_LOG(" Ident: %s\n", info[i].ident);
@ -218,6 +226,7 @@ static bool environ_cb_get_system_info(unsigned cmd, void *data)
RARCH_LOG("Subsystems: %d\n", i); RARCH_LOG("Subsystems: %d\n", i);
size = i; size = i;
if (log_level == RETRO_LOG_DEBUG)
if (size > SUBSYSTEM_MAX_SUBSYSTEMS) if (size > SUBSYSTEM_MAX_SUBSYSTEMS)
RARCH_WARN("Subsystems exceed subsystem max, clamping to %d\n", SUBSYSTEM_MAX_SUBSYSTEMS); RARCH_WARN("Subsystems exceed subsystem max, clamping to %d\n", SUBSYSTEM_MAX_SUBSYSTEMS);
@ -237,6 +246,7 @@ static bool environ_cb_get_system_info(unsigned cmd, void *data)
subsystem_data[i].id = info[i].id; subsystem_data[i].id = info[i].id;
subsystem_data[i].num_roms = info[i].num_roms; subsystem_data[i].num_roms = info[i].num_roms;
if (log_level == RETRO_LOG_DEBUG)
if (subsystem_data[i].num_roms > SUBSYSTEM_MAX_SUBSYSTEM_ROMS) if (subsystem_data[i].num_roms > SUBSYSTEM_MAX_SUBSYSTEM_ROMS)
RARCH_WARN("Subsystems exceed subsystem max roms, clamping to %d\n", SUBSYSTEM_MAX_SUBSYSTEM_ROMS); RARCH_WARN("Subsystems exceed subsystem max roms, clamping to %d\n", SUBSYSTEM_MAX_SUBSYSTEM_ROMS);
@ -258,26 +268,10 @@ static bool environ_cb_get_system_info(unsigned cmd, void *data)
subsystem_data[i].roms = subsystem_data_roms[i]; subsystem_data[i].roms = subsystem_data_roms[i];
} }
subsystem_current_count = size <= SUBSYSTEM_MAX_SUBSYSTEMS ? size : SUBSYSTEM_MAX_SUBSYSTEMS; subsystem_current_count =
#if 0 size <= SUBSYSTEM_MAX_SUBSYSTEMS
RARCH_LOG("Subsystems: %d\n", subsystem_current_count); ? size
: SUBSYSTEM_MAX_SUBSYSTEMS;
for (i = 0; i < subsystem_current_count; i++)
{
RARCH_LOG("Subsystem ID: %d\n", i);
RARCH_LOG("Special game type: %s\n", subsystem_data[i].desc);
RARCH_LOG(" Ident: %s\n", subsystem_data[i].ident);
RARCH_LOG(" ID: %u\n", subsystem_data[i].id);
RARCH_LOG(" Content:\n");
for (j = 0; j < subsystem_data[i].num_roms; j++)
{
RARCH_LOG(" %s (%s)\n",
subsystem_data[i].roms[j].desc, subsystem_data[i].roms[j].required ?
"required" : "optional");
}
}
#endif
} }
break; break;
} }
@ -1720,14 +1714,21 @@ bool rarch_environment_cb(unsigned cmd, void *data)
case RETRO_ENVIRONMENT_SET_SUBSYSTEM_INFO: case RETRO_ENVIRONMENT_SET_SUBSYSTEM_INFO:
{ {
unsigned i, j; unsigned i;
const struct retro_subsystem_info *info = const struct retro_subsystem_info *info =
(const struct retro_subsystem_info*)data; (const struct retro_subsystem_info*)data;
settings_t *settings = config_get_ptr();
unsigned log_level = settings->uints.libretro_log_level;
if (log_level == RETRO_LOG_DEBUG)
RARCH_LOG("Environ SET_SUBSYSTEM_INFO.\n"); RARCH_LOG("Environ SET_SUBSYSTEM_INFO.\n");
for (i = 0; info[i].ident; i++) for (i = 0; info[i].ident; i++)
{ {
unsigned j;
if (!log_level != RETRO_LOG_DEBUG)
continue;
RARCH_LOG("Special game type: %s\n", info[i].desc); RARCH_LOG("Special game type: %s\n", info[i].desc);
RARCH_LOG(" Ident: %s\n", info[i].ident); RARCH_LOG(" Ident: %s\n", info[i].ident);
RARCH_LOG(" ID: %u\n", info[i].id); RARCH_LOG(" ID: %u\n", info[i].id);

View File

@ -4235,7 +4235,7 @@ unsigned menu_displaylist_build_list(file_list_t *list, enum menu_displaylist_ct
{ {
menu_displaylist_build_info_t build_list[] = { menu_displaylist_build_info_t build_list[] = {
{MENU_ENUM_LABEL_LOG_VERBOSITY, PARSE_ONLY_BOOL}, {MENU_ENUM_LABEL_LOG_VERBOSITY, PARSE_ONLY_BOOL},
{MENU_ENUM_LABEL_LIBRETRO_LOG_LEVEL, PARSE_ONLY_BOOL}, {MENU_ENUM_LABEL_LIBRETRO_LOG_LEVEL, PARSE_ONLY_UINT},
{MENU_ENUM_LABEL_LOG_TO_FILE, PARSE_ONLY_BOOL}, {MENU_ENUM_LABEL_LOG_TO_FILE, PARSE_ONLY_BOOL},
{MENU_ENUM_LABEL_LOG_TO_FILE_TIMESTAMP, PARSE_ONLY_BOOL}, {MENU_ENUM_LABEL_LOG_TO_FILE_TIMESTAMP, PARSE_ONLY_BOOL},
{MENU_ENUM_LABEL_PERFCNT_ENABLE, PARSE_ONLY_BOOL}, {MENU_ENUM_LABEL_PERFCNT_ENABLE, PARSE_ONLY_BOOL},

View File

@ -2653,16 +2653,23 @@ bool rarch_ctl(enum rarch_ctl_state state, void *data)
break; break;
case RARCH_CTL_CORE_OPTIONS_GET: case RARCH_CTL_CORE_OPTIONS_GET:
{ {
settings_t *settings = config_get_ptr();
unsigned log_level = settings->uints.libretro_log_level;
struct retro_variable *var = (struct retro_variable*)data; struct retro_variable *var = (struct retro_variable*)data;
if (!runloop_core_options || !var) if (!runloop_core_options || !var)
return false; return false;
RARCH_LOG("Environ GET_VARIABLE %s:\n", var->key);
core_option_manager_get(runloop_core_options, var); core_option_manager_get(runloop_core_options, var);
if (log_level == RETRO_LOG_DEBUG)
{
RARCH_LOG("Environ GET_VARIABLE %s:\n", var->key);
RARCH_LOG("\t%s\n", var->value ? var->value : RARCH_LOG("\t%s\n", var->value ? var->value :
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE)); msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE));
} }
}
break; break;
case RARCH_CTL_CORE_OPTIONS_INIT: case RARCH_CTL_CORE_OPTIONS_INIT:
{ {