summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar David Marcec2018-04-26 14:28:54 -0700
committerGravatar David Marcec2018-04-26 14:28:54 -0700
commit7391741a204d6f25a06132eda214b2199b60a084 (patch)
treeaeeb723744c4563ad608361b82dd938b062a3e09 /src/core/hle/service/service.cpp
parentAdded PREPO to logging backend, Removed comments from SaveReportWithUser (diff)
parentMerge pull request #403 from lioncash/common (diff)
downloadyuzu-7391741a204d6f25a06132eda214b2199b60a084.tar.gz
yuzu-7391741a204d6f25a06132eda214b2199b60a084.tar.xz
yuzu-7391741a204d6f25a06132eda214b2199b60a084.zip
Merge branch 'master' of https://github.com/yuzu-emu/yuzu into service-impl
Diffstat (limited to 'src/core/hle/service/service.cpp')
-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 68d2b9f17..34d691b90 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -121,7 +121,7 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext
121 } 121 }
122 buf.push_back('}'); 122 buf.push_back('}');
123 123
124 LOG_ERROR(Service, "unknown / unimplemented %s", fmt::to_string(buf).c_str()); 124 NGLOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf));
125 UNIMPLEMENTED(); 125 UNIMPLEMENTED();
126} 126}
127 127
@@ -132,8 +132,8 @@ void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) {
132 return ReportUnimplementedFunction(ctx, info); 132 return ReportUnimplementedFunction(ctx, info);
133 } 133 }
134 134
135 LOG_TRACE( 135 NGLOG_TRACE(
136 Service, "%s", 136 Service, "{}",
137 MakeFunctionString(info->name, GetServiceName().c_str(), ctx.CommandBuffer()).c_str()); 137 MakeFunctionString(info->name, GetServiceName().c_str(), ctx.CommandBuffer()).c_str());
138 handler_invoker(this, info->handler_callback, ctx); 138 handler_invoker(this, info->handler_callback, ctx);
139} 139}
@@ -201,12 +201,12 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
201 VI::InstallInterfaces(*sm, nv_flinger); 201 VI::InstallInterfaces(*sm, nv_flinger);
202 Set::InstallInterfaces(*sm); 202 Set::InstallInterfaces(*sm);
203 203
204 LOG_DEBUG(Service, "initialized OK"); 204 NGLOG_DEBUG(Service, "initialized OK");
205} 205}
206 206
207/// Shutdown ServiceManager 207/// Shutdown ServiceManager
208void Shutdown() { 208void Shutdown() {
209 g_kernel_named_ports.clear(); 209 g_kernel_named_ports.clear();
210 LOG_DEBUG(Service, "shutdown OK"); 210 NGLOG_DEBUG(Service, "shutdown OK");
211} 211}
212} // namespace Service 212} // namespace Service