diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-24 16:54:26 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-24 18:01:31 +0200 |
commit | 82413a6c89481cf943676965e953a73a48be2fa9 (patch) | |
tree | e3682c652f898c3fd6582f6489b62a1bf0db0332 /src/core/hle/service | |
parent | sockets: Move logging macros over to new fmt-compatible ones (diff) | |
download | yuzu-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 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/spl/module.cpp | 2 |
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) { |