kernel: fix LOG_TRACE in ipc

This commit is contained in:
Liam 2023-03-19 10:02:20 -04:00
parent 0e7e98e24e
commit 43d909949e
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ Result SendSyncRequest(Core::System& system, Handle handle) {
GetCurrentProcess(system.Kernel()).GetHandleTable().GetObject<KClientSession>(handle);
R_UNLESS(session.IsNotNull(), ResultInvalidHandle);
LOG_TRACE(Kernel_SVC, "called handle=0x{:08X}({})", handle, session->GetName());
LOG_TRACE(Kernel_SVC, "called handle=0x{:08X}", handle);
R_RETURN(session->SendSyncRequest());
}