summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mm/mm_u.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-09-02 05:37:41 +0200
committerGitHub <noreply@github.com>2022-09-02 05:37:41 +0200
commit6690dfc486a09c281bbfea39c16e2474eba47202 (patch)
tree3d07fea8fa283142ff3980d8f13f0c7c9b5ac006 /src/core/hle/service/mm/mm_u.cpp
parentMerge pull request #8841 from zhaobot/tx-update-20220901035349 (diff)
parentDemote services from warning/info to debug to reduce log spam: (diff)
downloadyuzu-6690dfc486a09c281bbfea39c16e2474eba47202.tar
yuzu-6690dfc486a09c281bbfea39c16e2474eba47202.tar.gz
yuzu-6690dfc486a09c281bbfea39c16e2474eba47202.tar.bz2
yuzu-6690dfc486a09c281bbfea39c16e2474eba47202.tar.lz
yuzu-6690dfc486a09c281bbfea39c16e2474eba47202.tar.xz
yuzu-6690dfc486a09c281bbfea39c16e2474eba47202.tar.zst
yuzu-6690dfc486a09c281bbfea39c16e2474eba47202.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/mm/mm_u.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/mm/mm_u.cpp b/src/core/hle/service/mm/mm_u.cpp
index 5ebb124a7..ba8c0e230 100644
--- a/src/core/hle/service/mm/mm_u.cpp
+++ b/src/core/hle/service/mm/mm_u.cpp
@@ -46,7 +46,7 @@ private:
IPC::RequestParser rp{ctx};
min = rp.Pop<u32>();
max = rp.Pop<u32>();
- LOG_WARNING(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max);
+ LOG_DEBUG(Service_MM, "(STUBBED) called, min=0x{:X}, max=0x{:X}", min, max);
current = min;
IPC::ResponseBuilder rb{ctx, 2};
@@ -54,7 +54,7 @@ private:
}
void GetOld(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_MM, "(STUBBED) called");
+ LOG_DEBUG(Service_MM, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(ResultSuccess);
@@ -81,8 +81,8 @@ private:
u32 input_id = rp.Pop<u32>();
min = rp.Pop<u32>();
max = rp.Pop<u32>();
- LOG_WARNING(Service_MM, "(STUBBED) called, input_id=0x{:X}, min=0x{:X}, max=0x{:X}",
- input_id, min, max);
+ LOG_DEBUG(Service_MM, "(STUBBED) called, input_id=0x{:X}, min=0x{:X}, max=0x{:X}", input_id,
+ min, max);
current = min;
IPC::ResponseBuilder rb{ctx, 2};
@@ -90,7 +90,7 @@ private:
}
void Get(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_MM, "(STUBBED) called");
+ LOG_DEBUG(Service_MM, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(ResultSuccess);