summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar James Rowe2018-07-02 10:13:26 -0600
committerGravatar bunnei2018-07-02 21:45:47 -0400
commit638956aa81de255bf4bbd4e69a717eabf4ceadb9 (patch)
tree5783dda790575e047fa757d8c56e11f3fffe7646 /src/core/hle/service/service.cpp
parentMerge pull request #608 from Subv/depth (diff)
downloadyuzu-638956aa81de255bf4bbd4e69a717eabf4ceadb9.tar.gz
yuzu-638956aa81de255bf4bbd4e69a717eabf4ceadb9.tar.xz
yuzu-638956aa81de255bf4bbd4e69a717eabf4ceadb9.zip
Rename logging macro back to LOG_*
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index bdd9eb5a5..0d036bfaa 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -122,7 +122,7 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext
122 } 122 }
123 buf.push_back('}'); 123 buf.push_back('}');
124 124
125 NGLOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf)); 125 LOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf));
126 UNIMPLEMENTED(); 126 UNIMPLEMENTED();
127} 127}
128 128
@@ -133,7 +133,7 @@ void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) {
133 return ReportUnimplementedFunction(ctx, info); 133 return ReportUnimplementedFunction(ctx, info);
134 } 134 }
135 135
136 NGLOG_TRACE( 136 LOG_TRACE(
137 Service, "{}", 137 Service, "{}",
138 MakeFunctionString(info->name, GetServiceName().c_str(), ctx.CommandBuffer()).c_str()); 138 MakeFunctionString(info->name, GetServiceName().c_str(), ctx.CommandBuffer()).c_str());
139 handler_invoker(this, info->handler_callback, ctx); 139 handler_invoker(this, info->handler_callback, ctx);
@@ -206,12 +206,12 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
206 VI::InstallInterfaces(*sm, nv_flinger); 206 VI::InstallInterfaces(*sm, nv_flinger);
207 Set::InstallInterfaces(*sm); 207 Set::InstallInterfaces(*sm);
208 208
209 NGLOG_DEBUG(Service, "initialized OK"); 209 LOG_DEBUG(Service, "initialized OK");
210} 210}
211 211
212/// Shutdown ServiceManager 212/// Shutdown ServiceManager
213void Shutdown() { 213void Shutdown() {
214 g_kernel_named_ports.clear(); 214 g_kernel_named_ports.clear();
215 NGLOG_DEBUG(Service, "shutdown OK"); 215 LOG_DEBUG(Service, "shutdown OK");
216} 216}
217} // namespace Service 217} // namespace Service