diff options
author | LC <mathew1800@gmail.com> | 2020-12-29 14:03:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 14:03:24 -0500 |
commit | aa87278bf04f70e557020556cce50539fcf0ee81 (patch) | |
tree | 707f0a07939a2364ced9b916245948968198fb15 /src | |
parent | 22ba437aa4e77ee2af17501956564338d269da47 (diff) | |
parent | 0383363a8f5d0781b710f0b06a06299b56816ce7 (diff) |
Merge pull request #5245 from ameerj/sleepthread-log
svc: demote SleepThread log to LOG_TRACE
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 2d225392f..de3ed25da 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -1583,7 +1583,7 @@ static void ExitThread32(Core::System& system) { /// Sleep the current thread static void SleepThread(Core::System& system, s64 nanoseconds) { - LOG_DEBUG(Kernel_SVC, "called nanoseconds={}", nanoseconds); + LOG_TRACE(Kernel_SVC, "called nanoseconds={}", nanoseconds); enum class SleepType : s64 { YieldWithoutCoreMigration = 0, |