IOS/ES: Log content reads for debugging

We log FS reads already, might as well log ES content reads.
This commit is contained in:
Léo Lam 2021-02-11 10:21:43 +01:00
parent 41e2fab54c
commit 1073463d35
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741

View File

@ -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));
}