summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2020-12-29 20:01:56 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2020-12-29 20:01:56 +0100
commit0383363a8f5d0781b710f0b06a06299b56816ce7 (patch)
tree52c59b500d472cb781786674c3f55ffedc10a084
parentMerge pull request #5233 from german77/inverted (diff)
downloadyuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.tar
yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.tar.gz
yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.tar.bz2
yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.tar.lz
yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.tar.xz
yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.tar.zst
yuzu-0383363a8f5d0781b710f0b06a06299b56816ce7.zip
-rw-r--r--src/core/hle/kernel/svc.cpp2
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,