diff --git a/configuration.c b/configuration.c index 0f2e6e0464d7..3440bead137b 100644 --- a/configuration.c +++ b/configuration.c @@ -5082,6 +5082,7 @@ bool config_save_autoconf_profile(const } } + RARCH_LOG("[Autoconf]: Writing autoconf file for %s to %s\n", device_name, autoconf_file); ret = config_file_write(conf, autoconf_file, false); end: diff --git a/frontend/frontend_salamander.c b/frontend/frontend_salamander.c index 496f9e56dd4e..c1ab7ee3f369 100644 --- a/frontend/frontend_salamander.c +++ b/frontend/frontend_salamander.c @@ -180,6 +180,7 @@ static void salamander_init(char *s, size_t len) { config_set_path(config, "libretro_path", s); config_file_write(config, config_path, false); + RARCH_DBG("Salamander config file written to %s\n", config_path); config_file_free(config); } } diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index b998856268fc..2db1fe69c675 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3683,12 +3683,16 @@ static int generic_action_ok_remap_file_operation(const char *path, msg_hash_to_str(MSG_REMAP_FILE_SAVED_SUCCESSFULLY), 1, 100, true, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO); + RARCH_LOG("[Remap] File saved successfully: %s\n",remap_file_path); } else + { runloop_msg_queue_push( msg_hash_to_str(MSG_ERROR_SAVING_REMAP_FILE), 1, 100, true, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO); + RARCH_ERR("[Remap] File save unsuccessful: %s\n",remap_file_path); + } } else { diff --git a/runloop.c b/runloop.c index 81ce5415febf..3b8dc9293188 100644 --- a/runloop.c +++ b/runloop.c @@ -4962,6 +4962,7 @@ bool core_options_create_override(bool game_specific) if (!config_file_write(conf, options_path, true)) goto error; + RARCH_LOG("[Core] Core options file created successfully: %s\n", options_path); runloop_msg_queue_push( msg_hash_to_str(MSG_CORE_OPTIONS_FILE_CREATED_SUCCESSFULLY), 1, 100, true,