mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
IOS/ES: Log content reads for debugging
We log FS reads already, might as well log ES content reads.
This commit is contained in:
parent
41e2fab54c
commit
1073463d35
1 changed files with 2 additions and 0 deletions
|
@ -110,6 +110,8 @@ IPCReply ESDevice::ReadContent(u32 uid, const IOCtlVRequest& request)
|
||||||
const u32 size = request.io_vectors[0].size;
|
const u32 size = request.io_vectors[0].size;
|
||||||
const u32 addr = request.io_vectors[0].address;
|
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));
|
return IPCReply(ReadContent(cfd, Memory::GetPointer(addr), size, uid));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue