Browse Source

[core/hle/kernel/svc] demote ResetSignal log Debug->Trace (#4161)

I don't see why it's LOG_DEBUG if WaitSynchronization is LOG_TRACE, leaves incomplete data
may as well bundle it to trace with the others? :)

Signed-off-by: lizzie <lizzie@eden-emu.dev>

Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4161
Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
Reviewed-by: Maufeat <sahyno1996@gmail.com>
pull/3842/head
lizzie 1 day ago
committed by crueter
parent
commit
7731b5bc86
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 2
      src/core/hle/kernel/svc/svc_synchronization.cpp

2
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. /// Clears the signaled state of an event or process.
Result ResetSignal(Core::System& system, Handle handle) { Result ResetSignal(Core::System& system, Handle handle) {
LOG_DEBUG(Kernel_SVC, "called handle {:#08x}", handle);
LOG_TRACE(Kernel_SVC, "called handle {:#08x}", handle);
// Get the current handle table. // Get the current handle table.
const auto& handle_table = GetCurrentProcess(system.Kernel()).GetHandleTable(); const auto& handle_table = GetCurrentProcess(system.Kernel()).GetHandleTable();

Loading…
Cancel
Save