summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-24 17:05:22 +0200
committerLioncash <mathew1800@gmail.com>2018-04-24 18:01:32 +0200
commitd08cfb55fe77599074a4d55cc10149257c1fcd84 (patch)
tree6d147c2635e8d2f6fd598b97723f63780932bcda /src/core/hle/service
parentvi: Move logging macros over to new fmt-compatible ones (diff)
downloadyuzu-d08cfb55fe77599074a4d55cc10149257c1fcd84.tar
yuzu-d08cfb55fe77599074a4d55cc10149257c1fcd84.tar.gz
yuzu-d08cfb55fe77599074a4d55cc10149257c1fcd84.tar.bz2
yuzu-d08cfb55fe77599074a4d55cc10149257c1fcd84.tar.lz
yuzu-d08cfb55fe77599074a4d55cc10149257c1fcd84.tar.xz
yuzu-d08cfb55fe77599074a4d55cc10149257c1fcd84.tar.zst
yuzu-d08cfb55fe77599074a4d55cc10149257c1fcd84.zip
Diffstat (limited to 'src/core/hle/service')
-rw-r--r--src/core/hle/service/service.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 08ce29677..5817819fe 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -120,7 +120,7 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext
}
buf.push_back('}');
- LOG_ERROR(Service, "unknown / unimplemented %s", fmt::to_string(buf).c_str());
+ NGLOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf));
UNIMPLEMENTED();
}
@@ -131,8 +131,8 @@ void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) {
return ReportUnimplementedFunction(ctx, info);
}
- LOG_TRACE(
- Service, "%s",
+ NGLOG_TRACE(
+ Service, "{}",
MakeFunctionString(info->name, GetServiceName().c_str(), ctx.CommandBuffer()).c_str());
handler_invoker(this, info->handler_callback, ctx);
}
@@ -199,12 +199,12 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
VI::InstallInterfaces(*sm, nv_flinger);
Set::InstallInterfaces(*sm);
- LOG_DEBUG(Service, "initialized OK");
+ NGLOG_DEBUG(Service, "initialized OK");
}
/// Shutdown ServiceManager
void Shutdown() {
g_kernel_named_ports.clear();
- LOG_DEBUG(Service, "shutdown OK");
+ NGLOG_DEBUG(Service, "shutdown OK");
}
} // namespace Service