summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2018-04-24 10:54:26 -0400
committerGravatar Lioncash2018-04-24 12:01:31 -0400
commit82413a6c89481cf943676965e953a73a48be2fa9 (patch)
treee3682c652f898c3fd6582f6489b62a1bf0db0332
parentsockets: Move logging macros over to new fmt-compatible ones (diff)
downloadyuzu-82413a6c89481cf943676965e953a73a48be2fa9.tar.gz
yuzu-82413a6c89481cf943676965e953a73a48be2fa9.tar.xz
yuzu-82413a6c89481cf943676965e953a73a48be2fa9.zip
spl: Move logging macros over to new fmt-compatible ones
-rw-r--r--src/core/hle/service/spl/module.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/spl/module.cpp b/src/core/hle/service/spl/module.cpp
index 3f5a342a7..76ba97156 100644
--- a/src/core/hle/service/spl/module.cpp
+++ b/src/core/hle/service/spl/module.cpp
@@ -28,7 +28,7 @@ void Module::Interface::GetRandomBytes(Kernel::HLERequestContext& ctx) {
28 28
29 IPC::ResponseBuilder rb{ctx, 2}; 29 IPC::ResponseBuilder rb{ctx, 2};
30 rb.Push(RESULT_SUCCESS); 30 rb.Push(RESULT_SUCCESS);
31 LOG_DEBUG(Service_SPL, "called"); 31 NGLOG_DEBUG(Service_SPL, "called");
32} 32}
33 33
34void InstallInterfaces(SM::ServiceManager& service_manager) { 34void InstallInterfaces(SM::ServiceManager& service_manager) {