aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nfp/nfp.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-04-26 20:03:12 -0700
committerDavid Marcec <dmarcecguzman@gmail.com>2018-04-26 20:03:12 -0700
commitabc23416e8f2a0963a5ddff021788cae7f00dd62 (patch)
tree5bf36e44e7e264e03210a06a04e2cb64378045d6 /src/core/hle/service/nfp/nfp.cpp
parent7391741a204d6f25a06132eda214b2199b60a084 (diff)
Switched to NGLOG_WARNING
Diffstat (limited to 'src/core/hle/service/nfp/nfp.cpp')
-rw-r--r--src/core/hle/service/nfp/nfp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp
index a1cd6b24a..cc0247881 100644
--- a/src/core/hle/service/nfp/nfp.cpp
+++ b/src/core/hle/service/nfp/nfp.cpp
@@ -47,14 +47,14 @@ public:
private:
void Initialize(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_NFP, "(STUBBED) called");
+ NGLOG_WARNING(Service_NFP, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
}
};
void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_NFP, "(STUBBED) called");
+ NGLOG_DEBUG(Service_NFP, "called");
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(RESULT_SUCCESS);
rb.PushIpcInterface<IUser>();