Skip to content
Snippets Groups Projects
Unverified Commit 32ece18b authored by Lioncash's avatar Lioncash
Browse files

set: Move logging macros over to new fmt-compatible ones

parent 13f9cf2b
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ void SET::GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx) { ...@@ -22,7 +22,7 @@ void SET::GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx) {
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);
LOG_WARNING(Service_SET, "(STUBBED) called"); NGLOG_WARNING(Service_SET, "(STUBBED) called");
} }
SET::SET() : ServiceFramework("set") { SET::SET() : ServiceFramework("set") {
......
...@@ -16,7 +16,7 @@ void SET_SYS::GetColorSetId(Kernel::HLERequestContext& ctx) { ...@@ -16,7 +16,7 @@ void SET_SYS::GetColorSetId(Kernel::HLERequestContext& ctx) {
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);
rb.Push<u32>(0); rb.Push<u32>(0);
LOG_WARNING(Service_SET, "(STUBBED) called"); NGLOG_WARNING(Service_SET, "(STUBBED) called");
} }
SET_SYS::SET_SYS() : ServiceFramework("set:sys") { SET_SYS::SET_SYS() : ServiceFramework("set:sys") {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment