summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvmap.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/nvdrv/devices/nvmap.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/nvdrv/devices/nvmap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvmap.cpp b/src/core/hle/service/nvdrv/devices/nvmap.cpp
index 728bfa00b..d8518149d 100644
--- a/src/core/hle/service/nvdrv/devices/nvmap.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvmap.cpp
@@ -198,7 +198,7 @@ NvResult nvmap::IocParam(const std::vector<u8>& input, std::vector<u8>& output)
IocParamParams params;
std::memcpy(&params, input.data(), sizeof(params));
- LOG_WARNING(Service_NVDRV, "(STUBBED) called type={}", params.param);
+ LOG_DEBUG(Service_NVDRV, "(STUBBED) called type={}", params.param);
auto object = GetObject(params.handle);
if (!object) {
@@ -243,7 +243,7 @@ NvResult nvmap::IocFree(const std::vector<u8>& input, std::vector<u8>& output) {
IocFreeParams params;
std::memcpy(&params, input.data(), sizeof(params));
- LOG_WARNING(Service_NVDRV, "(STUBBED) called");
+ LOG_DEBUG(Service_NVDRV, "(STUBBED) called");
auto itr = handles.find(params.handle);
if (itr == handles.end()) {