summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-12-29 20:03:24 +0100
committerGitHub <noreply@github.com>2020-12-29 20:03:24 +0100
commitaa87278bf04f70e557020556cce50539fcf0ee81 (patch)
tree707f0a07939a2364ced9b916245948968198fb15
parentMerge pull request #5236 from gal20/udp_client_patch (diff)
parentsvc: demote SleepThread log to LOG_TRACE (diff)
downloadyuzu-aa87278bf04f70e557020556cce50539fcf0ee81.tar
yuzu-aa87278bf04f70e557020556cce50539fcf0ee81.tar.gz
yuzu-aa87278bf04f70e557020556cce50539fcf0ee81.tar.bz2
yuzu-aa87278bf04f70e557020556cce50539fcf0ee81.tar.lz
yuzu-aa87278bf04f70e557020556cce50539fcf0ee81.tar.xz
yuzu-aa87278bf04f70e557020556cce50539fcf0ee81.tar.zst
yuzu-aa87278bf04f70e557020556cce50539fcf0ee81.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,