diff options
| author | bunnei <bunneidev@gmail.com> | 2022-09-01 20:37:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-01 20:37:41 -0700 |
| commit | 6690dfc486a09c281bbfea39c16e2474eba47202 (patch) | |
| tree | 3d07fea8fa283142ff3980d8f13f0c7c9b5ac006 /src/core/hle/service/apm/apm_controller.cpp | |
| parent | cbc2761f113cee43c0d8fe4a6de4401cb743c153 (diff) | |
| parent | 03aedccaa252a7989c3ab147a83305b386476748 (diff) | |
Merge pull request #8844 from Kelebek1/demote
Demote services from warning/info to debug to reduce log spam
Diffstat (limited to 'src/core/hle/service/apm/apm_controller.cpp')
| -rw-r--r-- | src/core/hle/service/apm/apm_controller.cpp | 2 |
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. } |
