From fa631320bbcabd7895758f2d21aad5c39cef7821 Mon Sep 17 00:00:00 2001 From: lizzie Date: Thu, 2 Jul 2026 22:06:04 +0000 Subject: [PATCH] [core/hle/kernel/svc] demote ResetSignal LOG_DEBUG to LOG_TRACE Signed-off-by: lizzie --- src/core/hle/kernel/svc/svc_synchronization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/kernel/svc/svc_synchronization.cpp b/src/core/hle/kernel/svc/svc_synchronization.cpp index 1b29fd5865..03ea9ecbf4 100644 --- a/src/core/hle/kernel/svc/svc_synchronization.cpp +++ b/src/core/hle/kernel/svc/svc_synchronization.cpp @@ -28,7 +28,7 @@ Result CloseHandle(Core::System& system, Handle handle) { /// Clears the signaled state of an event or process. Result ResetSignal(Core::System& system, Handle handle) { - LOG_DEBUG(Kernel_SVC, "called handle 0x{:08X}", handle); + LOG_TRACE(Kernel_SVC, "called handle 0x{:08X}", handle); // Get the current handle table. const auto& handle_table = GetCurrentProcess(system.Kernel()).GetHandleTable();