Compare commits

...

1 Commits

Author SHA1 Message Date
David Marcec
8b2dcd743c Changed UNIMPLEMENTED_MSG -> LOG_CRITICAL for missing services
Easier debugging for canary logs
2019-01-04 20:38:29 +11:00

View File

@@ -148,7 +148,7 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext
}
buf.push_back('}');
UNIMPLEMENTED_MSG("Unknown / unimplemented {}", fmt::to_string(buf));
LOG_CRITICAL(Service, "Unknown / unimplemented {}", fmt::to_string(buf));
}
void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) {