Skip to content

Commit

Permalink
TAR: Improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 committed Nov 28, 2023
1 parent 0416f63 commit 3bd27d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Loader/TAR.cpp
Expand Up @@ -139,7 +139,7 @@ std::unique_ptr<utils::serial> tar_object::get_file(const std::string& path, std
}
else
{
tar_log.error("tar_object::get_file() failed to parse header: offset=0x%x, filesize=0x%x", offset, max_size);
tar_log.notice("tar_object::get_file() failed to parse header: offset=0x%x, filesize=0x%x, header_first16=0x%016x", offset, max_size, read_from_ptr<be_t<u128>>(reinterpret_cast<const u8*>(&header)));
}

return { size, {} };
Expand Down

0 comments on commit 3bd27d5

Please sign in to comment.