diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-07-19 17:14:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-19 17:14:45 -0400 |
commit | 86bbfe3b1d683640921e614c7d44ded67bb859d4 (patch) | |
tree | cd076ff72f4b98f5b7b8394da301746a9932255f | |
parent | 3fded314f22554c867a283ca3b5c79069d96fe0d (diff) | |
parent | 80cd67ed7ba551ca12bfede97c751df4e25baeac (diff) |
Merge pull request #11114 from Kelebek1/warnings
Mark SetIdleTimeDetectionExtension logging as debug
-rw-r--r-- | src/core/hle/service/am/am.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index a2375508a0..4f400d3416 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -506,8 +506,8 @@ void ISelfController::SetHandlesRequestToDisplay(HLERequestContext& ctx) { void ISelfController::SetIdleTimeDetectionExtension(HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; idle_time_detection_extension = rp.Pop<u32>(); - LOG_WARNING(Service_AM, "(STUBBED) called idle_time_detection_extension={}", - idle_time_detection_extension); + LOG_DEBUG(Service_AM, "(STUBBED) called idle_time_detection_extension={}", + idle_time_detection_extension); IPC::ResponseBuilder rb{ctx, 2}; rb.Push(ResultSuccess); |