summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-01 22:33:53 -0400
committerbunnei <ericbunnie@gmail.com>2014-06-01 22:33:53 -0400
commit4819e9a60f36ac4ec1a7cb3d30008353ab03bf14 (patch)
tree4d0f58cb66e77b13f5fdd1877077bca8131e96ea /src/core/hle/svc.cpp
parent3fb31fbc57fd1d537db79af898ef26c92b0e0867 (diff)
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) {
/// 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) {