summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-02-11 09:47:32 +0100
committerLéo Lam <leo@leolam.fr>2021-02-18 18:52:35 +0100
commit41e2fab54c861e85eb5fbcbddf91491ed87fa0c0 (patch)
tree430c6435a3e49fe4a9ca19ee50cbbe3323e30b6c /Source/Core
parent5e79b6acb7bc8825ce71b842d01999f5d341caa6 (diff)
IOS/ES: Log content ID and index when opening contents for debugging
The content ID/index is what actually matters..
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/IOS/ES/TitleContents.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/Core/IOS/ES/TitleContents.cpp b/Source/Core/Core/IOS/ES/TitleContents.cpp
index 0cab7b7c91..b099937367 100644
--- a/Source/Core/Core/IOS/ES/TitleContents.cpp
+++ b/Source/Core/Core/IOS/ES/TitleContents.cpp
@@ -39,7 +39,9 @@ s32 ESDevice::OpenContent(const ES::TMDReader& tmd, u16 content_index, u32 uid)
entry.m_content = content;
entry.m_title_id = title_id;
entry.m_uid = uid;
- INFO_LOG_FMT(IOS_ES, "OpenContent: title ID {:016x}, UID {:#x}, CFD {}", title_id, uid, i);
+ INFO_LOG_FMT(IOS_ES,
+ "OpenContent: title ID {:016x}, UID {:#x}, content {:08x} (index {}) -> CFD {}",
+ title_id, uid, content.id, content_index, i);
return static_cast<s32>(i);
}