mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
service/nim: Migrate logging macros (#3856)
This commit is contained in:
parent
4666d0c958
commit
4c67f1c7c6
@ -31,7 +31,7 @@ void NIM_U::CheckForSysUpdateEvent(Kernel::HLERequestContext& ctx) {
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.PushCopyObjects(nim_system_update_event);
|
||||
LOG_TRACE(Service_NIM, "called");
|
||||
NGLOG_TRACE(Service_NIM, "called");
|
||||
}
|
||||
|
||||
void NIM_U::CheckSysUpdateAvailable(Kernel::HLERequestContext& ctx) {
|
||||
@ -41,7 +41,7 @@ void NIM_U::CheckSysUpdateAvailable(Kernel::HLERequestContext& ctx) {
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.Push(false); // No update available
|
||||
|
||||
LOG_WARNING(Service_NIM, "(STUBBED) called");
|
||||
NGLOG_WARNING(Service_NIM, "(STUBBED) called");
|
||||
}
|
||||
|
||||
} // namespace NIM
|
||||
|
Loading…
Reference in New Issue
Block a user