From 3bd27d569512aba275ebf77a7b4e8f113807760a Mon Sep 17 00:00:00 2001 From: Eladash <18193363+elad335@users.noreply.github.com> Date: Tue, 28 Nov 2023 15:17:01 +0200 Subject: [PATCH] TAR: Improve logging --- rpcs3/Loader/TAR.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Loader/TAR.cpp b/rpcs3/Loader/TAR.cpp index 6dfc62c1ce7b..ca496774f596 100644 --- a/rpcs3/Loader/TAR.cpp +++ b/rpcs3/Loader/TAR.cpp @@ -139,7 +139,7 @@ std::unique_ptr 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>(reinterpret_cast(&header))); } return { size, {} };