ソースを参照

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.
ameerj 5 年 前
コミット
0383363a8f
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/core/hle/kernel/svc.cpp

+ 1 - 1
src/core/hle/kernel/svc.cpp

@@ -1583,7 +1583,7 @@ static void ExitThread32(Core::System& system) {
 
 
 /// Sleep the current thread
 /// Sleep the current thread
 static void SleepThread(Core::System& system, s64 nanoseconds) {
 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 {
     enum class SleepType : s64 {
         YieldWithoutCoreMigration = 0,
         YieldWithoutCoreMigration = 0,