diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-24 10:54:26 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-24 12:01:31 -0400 |
commit | 82413a6c89481cf943676965e953a73a48be2fa9 (patch) | |
tree | e3682c652f898c3fd6582f6489b62a1bf0db0332 /src | |
parent | 62c69f4a1e6367f0400cf5d3ea8ec640b232b159 (diff) |
spl: Move logging macros over to new fmt-compatible ones
Diffstat (limited to 'src')
-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) { |