diff options
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 8 |
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 |
| 213 | void Shutdown() { | 213 | void 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 |