diff options
| author | 2020-12-29 14:01:56 -0500 | |
|---|---|---|
| committer | 2020-12-29 14:01:56 -0500 | |
| commit | 0383363a8f5d0781b710f0b06a06299b56816ce7 (patch) | |
| tree | 52c59b500d472cb781786674c3f55ffedc10a084 /src | |
| parent | Merge pull request #5233 from german77/inverted (diff) | |
| download | yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.tar.gz yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.tar.xz yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.zip | |
svc: demote SleepThread log to LOG_TRACE
This log is called often, and introduces a lot of noise when debug logging is enabled, making it difficult to see other debug logs.
Diffstat (limited to '')
| -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) { | |||
| 1583 | 1583 | ||
| 1584 | /// Sleep the current thread | 1584 | /// Sleep the current thread |
| 1585 | static void SleepThread(Core::System& system, s64 nanoseconds) { | 1585 | static void SleepThread(Core::System& system, s64 nanoseconds) { |
| 1586 | LOG_DEBUG(Kernel_SVC, "called nanoseconds={}", nanoseconds); | 1586 | LOG_TRACE(Kernel_SVC, "called nanoseconds={}", nanoseconds); |
| 1587 | 1587 | ||
| 1588 | enum class SleepType : s64 { | 1588 | enum class SleepType : s64 { |
| 1589 | YieldWithoutCoreMigration = 0, | 1589 | YieldWithoutCoreMigration = 0, |