summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-06-01 22:33:53 -0400
committerGravatar bunnei2014-06-01 22:33:53 -0400
commit4819e9a60f36ac4ec1a7cb3d30008353ab03bf14 (patch)
tree4d0f58cb66e77b13f5fdd1877077bca8131e96ea /src/core/hle/svc.cpp
parentsvc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic... (diff)
downloadyuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.gz
yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.tar.xz
yuzu-4819e9a60f36ac4ec1a7cb3d30008353ab03bf14.zip
svc: changed DuplicateHandle log message from "error" to "debug"
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 2384b7936..1f36c7ac5 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -311,7 +311,7 @@ Result CreateEvent(void* _event, u32 reset_type) {
311/// Duplicates a kernel handle 311/// Duplicates a kernel handle
312Result DuplicateHandle(void* _out, Handle handle) { 312Result DuplicateHandle(void* _out, Handle handle) {
313 Handle* out = (Handle*)_out; 313 Handle* out = (Handle*)_out;
314 ERROR_LOG(SVC, "called handle=0x%08X", handle); 314 DEBUG_LOG(SVC, "called handle=0x%08X", handle);
315 315
316 // Translate kernel handles -> real handles 316 // Translate kernel handles -> real handles
317 if (handle == Kernel::CurrentThread) { 317 if (handle == Kernel::CurrentThread) {