summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-30 00:53:45 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-30 00:53:45 +0200
commitb08b3c154fd5c2cdb12ab88597863f736c156123 (patch)
tree38b7c092bf614c6342c5d6c916f8ef734afe7caa /src/core/hle/service/srv.cpp
parentsvc: added ArbitrationType enumeration (diff)
downloadyuzu-b08b3c154fd5c2cdb12ab88597863f736c156123.tar
yuzu-b08b3c154fd5c2cdb12ab88597863f736c156123.tar.gz
yuzu-b08b3c154fd5c2cdb12ab88597863f736c156123.tar.bz2
yuzu-b08b3c154fd5c2cdb12ab88597863f736c156123.tar.lz
yuzu-b08b3c154fd5c2cdb12ab88597863f736c156123.tar.xz
yuzu-b08b3c154fd5c2cdb12ab88597863f736c156123.tar.zst
yuzu-b08b3c154fd5c2cdb12ab88597863f736c156123.zip
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-rw-r--r--src/core/hle/service/srv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 7bbc03bf6..97e7fc8fa 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -36,7 +36,7 @@ void GetServiceHandle(Service::Interface* self) {
std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
- NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(),
+ DEBUG_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(),
service->GetHandle());
if (NULL != service) {