summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/sm/controller.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-04-24 16:51:09 +0200
committerLioncash <mathew1800@gmail.com>2018-04-24 18:01:31 +0200
commit2a3f3bf977e1f3f6fe4a188b2194074c3399b5f2 (patch)
tree4b5423d6185d28440c8601bede56b882a227450e /src/core/hle/service/sm/controller.cpp
parentset: Move logging macros over to new fmt-compatible ones (diff)
downloadyuzu-2a3f3bf977e1f3f6fe4a188b2194074c3399b5f2.tar
yuzu-2a3f3bf977e1f3f6fe4a188b2194074c3399b5f2.tar.gz
yuzu-2a3f3bf977e1f3f6fe4a188b2194074c3399b5f2.tar.bz2
yuzu-2a3f3bf977e1f3f6fe4a188b2194074c3399b5f2.tar.lz
yuzu-2a3f3bf977e1f3f6fe4a188b2194074c3399b5f2.tar.xz
yuzu-2a3f3bf977e1f3f6fe4a188b2194074c3399b5f2.tar.zst
yuzu-2a3f3bf977e1f3f6fe4a188b2194074c3399b5f2.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/sm/controller.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/sm/controller.cpp b/src/core/hle/service/sm/controller.cpp
index 13e31620d..fe5097cdc 100644
--- a/src/core/hle/service/sm/controller.cpp
+++ b/src/core/hle/service/sm/controller.cpp
@@ -17,7 +17,7 @@ void Controller::ConvertSessionToDomain(Kernel::HLERequestContext& ctx) {
rb.Push(RESULT_SUCCESS);
rb.Push<u32>(1); // Converted sessions start with 1 request handler
- LOG_DEBUG(Service, "called, server_session=%d", ctx.Session()->GetObjectId());
+ NGLOG_DEBUG(Service, "called, server_session={}", ctx.Session()->GetObjectId());
}
void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
@@ -29,11 +29,11 @@ void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
Kernel::SharedPtr<Kernel::ClientSession> session{ctx.Session()->parent->client};
rb.PushMoveObjects(session);
- LOG_DEBUG(Service, "called, session=%u", session->GetObjectId());
+ NGLOG_DEBUG(Service, "called, session={}", session->GetObjectId());
}
void Controller::DuplicateSessionEx(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service, "(STUBBED) called, using DuplicateSession");
+ NGLOG_WARNING(Service, "(STUBBED) called, using DuplicateSession");
DuplicateSession(ctx);
}
@@ -43,7 +43,7 @@ void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
rb.Push(RESULT_SUCCESS);
rb.Push<u32>(0x500);
- LOG_WARNING(Service, "(STUBBED) called");
+ NGLOG_WARNING(Service, "(STUBBED) called");
}
Controller::Controller() : ServiceFramework("IpcController") {