Explorar o código

svc: changed DuplicateHandle log message from "error" to "debug"

bunnei %!s(int64=12) %!d(string=hai) anos
pai
achega
4819e9a60f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/core/hle/svc.cpp

+ 1 - 1
src/core/hle/svc.cpp

@@ -311,7 +311,7 @@ Result CreateEvent(void* _event, u32 reset_type) {
 /// Duplicates a kernel handle
 Result DuplicateHandle(void* _out, Handle handle) {
     Handle* out = (Handle*)_out;
-    ERROR_LOG(SVC, "called handle=0x%08X", handle);
+    DEBUG_LOG(SVC, "called handle=0x%08X", handle);
 
     // Translate kernel handles -> real handles
     if (handle == Kernel::CurrentThread) {