summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-04-24 10:27:20 -0400
committerGravatar Lioncash2018-04-24 12:00:56 -0400
commit8fc4003dabab37eb004aa23f46b618330ef837bc (patch)
tree2915881294cfd22e9e8eb9c843c696d73be5016f /src
parentfilesystem: Move logging macros over to new fmt-compatible ones (diff)
downloadyuzu-8fc4003dabab37eb004aa23f46b618330ef837bc.tar.gz
yuzu-8fc4003dabab37eb004aa23f46b618330ef837bc.tar.xz
yuzu-8fc4003dabab37eb004aa23f46b618330ef837bc.zip
friend: Move logging macros over to new fmt-compatible ones
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/friend/friend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp
index c98a46e05..94d9fbf25 100644
--- a/src/core/hle/service/friend/friend.cpp
+++ b/src/core/hle/service/friend/friend.cpp
@@ -13,7 +13,7 @@ namespace Service::Friend {
13void Module::Interface::CreateFriendService(Kernel::HLERequestContext& ctx) { 13void Module::Interface::CreateFriendService(Kernel::HLERequestContext& ctx) {
14 IPC::ResponseBuilder rb{ctx, 2}; 14 IPC::ResponseBuilder rb{ctx, 2};
15 rb.Push(RESULT_SUCCESS); 15 rb.Push(RESULT_SUCCESS);
16 LOG_WARNING(Service_Friend, "(STUBBED) called"); 16 NGLOG_WARNING(Service_Friend, "(STUBBED) called");
17} 17}
18 18
19Module::Interface::Interface(std::shared_ptr<Module> module, const char* name) 19Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)