summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/spl/module.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-24 16:54:26 +0200
committerLioncash <mathew1800@gmail.com>2018-04-24 18:01:31 +0200
commit82413a6c89481cf943676965e953a73a48be2fa9 (patch)
treee3682c652f898c3fd6582f6489b62a1bf0db0332 /src/core/hle/service/spl/module.cpp
parentsockets: Move logging macros over to new fmt-compatible ones (diff)
downloadyuzu-82413a6c89481cf943676965e953a73a48be2fa9.tar
yuzu-82413a6c89481cf943676965e953a73a48be2fa9.tar.gz
yuzu-82413a6c89481cf943676965e953a73a48be2fa9.tar.bz2
yuzu-82413a6c89481cf943676965e953a73a48be2fa9.tar.lz
yuzu-82413a6c89481cf943676965e953a73a48be2fa9.tar.xz
yuzu-82413a6c89481cf943676965e953a73a48be2fa9.tar.zst
yuzu-82413a6c89481cf943676965e953a73a48be2fa9.zip
Diffstat (limited to '')
-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) {
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
- LOG_DEBUG(Service_SPL, "called");
+ NGLOG_DEBUG(Service_SPL, "called");
}
void InstallInterfaces(SM::ServiceManager& service_manager) {