Get rid of unnecessary log spam about non-required/non-essential files/directories

This commit is contained in:
libretroadmin 2022-07-21 03:48:11 +02:00
parent 2cf6f6ce8f
commit 3cf7e881ec
2 changed files with 2 additions and 18 deletions

View File

@ -3914,9 +3914,6 @@ bool config_load_override(void *data)
should_append = true;
}
else
RARCH_LOG("[Overrides]: No core-specific overrides found at \"%s\".\n",
core_path);
if (has_content)
{
@ -3945,9 +3942,6 @@ bool config_load_override(void *data)
should_append = true;
}
else
RARCH_LOG("[Overrides]: No content-dir-specific overrides found at \"%s\".\n",
content_path);
/* per-game overrides */
/* Create a new config file from game_path */
@ -3974,9 +3968,6 @@ bool config_load_override(void *data)
should_append = true;
}
else
RARCH_LOG("[Overrides]: No game-specific overrides found at \"%s\".\n",
game_path);
}
if (!should_append)
@ -4080,8 +4071,6 @@ bool config_load_remap(const char *directory_input_remapping,
string_is_empty(directory_input_remapping))
return false;
RARCH_LOG("[Remaps]: Remap directory: \"%s\".\n", directory_input_remapping);
/* Concatenate strings into full paths for core_path,
* game_path, content_path */
if (has_content)

View File

@ -760,7 +760,6 @@ bool patch_content(
bool allow_ups = !is_bps_pref && !is_ips_pref;
bool allow_ips = !is_ups_pref && !is_bps_pref;
bool allow_bps = !is_ups_pref && !is_ips_pref;
bool patch_found = false;
if ( (unsigned)is_ips_pref
+ (unsigned)is_bps_pref
@ -833,12 +832,8 @@ bool patch_content(
free(name_bps_indexed);
free(name_ups_indexed);
patch_found = true;
return true;
}
if(!patch_found)
RARCH_LOG("[Content]: %s\n",
msg_hash_to_str(MSG_DID_NOT_FIND_A_VALID_CONTENT_PATCH));
return patch_found;
return false;
}