Skip to content

Commit

Permalink
IOS/ES: Log content reads for debugging
Browse files Browse the repository at this point in the history
We log FS reads already, might as well log ES content reads.
  • Loading branch information
leoetlino committed Feb 18, 2021
1 parent 41e2fab commit 1073463
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/Core/IOS/ES/TitleContents.cpp
Expand Up @@ -110,6 +110,8 @@ IPCReply ESDevice::ReadContent(u32 uid, const IOCtlVRequest& request)
const u32 size = request.io_vectors[0].size;
const u32 addr = request.io_vectors[0].address;

INFO_LOG_FMT(IOS_ES, "ReadContent(uid={:#x}, cfd={}, size={}, addr={:08x})", uid, cfd, size,
addr);
return IPCReply(ReadContent(cfd, Memory::GetPointer(addr), size, uid));
}

Expand Down

0 comments on commit 1073463

Please sign in to comment.