diff --git a/rpcs3/Emu/Cell/lv2/sys_fs.cpp b/rpcs3/Emu/Cell/lv2/sys_fs.cpp index 937a970de9..1faf39f648 100644 --- a/rpcs3/Emu/Cell/lv2/sys_fs.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_fs.cpp @@ -288,11 +288,15 @@ lv2_file::lv2_file(utils::serial& ar) if (!file) { - sys_fs.error("Failed to load %s for savestates", name.data()); + sys_fs.error("Failed to load \'%s\' file for savestates (res=%s, vpath=\'%s\', real-path=\'%s\', type=%s, flags=0x%x)", name.data(), res.error, retrieve_real, real_path, type, flags); ar.pos += sizeof(u64); ensure(!!g_cfg.savestate.state_inspection_mode); return; } + else + { + sys_fs.success("Loaded file descriptor \'%s\' file for savestates (vpath=\'%s\', type=%s, flags=0x%x, id=%d)", name.data(), retrieve_real, type, flags, idm::last_id()); + } file.seek(ar); }