summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apm/apm_controller.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/apm/apm_controller.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/apm/apm_controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/apm/apm_controller.cpp b/src/core/hle/service/apm/apm_controller.cpp
index 4e710491b..d6de84066 100644
--- a/src/core/hle/service/apm/apm_controller.cpp
+++ b/src/core/hle/service/apm/apm_controller.cpp
@@ -80,7 +80,7 @@ PerformanceConfiguration Controller::GetCurrentPerformanceConfiguration(Performa
}
void Controller::SetClockSpeed(u32 mhz) {
- LOG_INFO(Service_APM, "called, mhz={:08X}", mhz);
+ LOG_DEBUG(Service_APM, "called, mhz={:08X}", mhz);
// TODO(DarkLordZach): Actually signal core_timing to change clock speed.
// TODO(Rodrigo): Remove [[maybe_unused]] when core_timing is used.
}