From 1d59c8f79238a1d90d37968f8ab13ad8a896ed67 Mon Sep 17 00:00:00 2001
From: Subv <subv2112@gmail.com>
Date: Thu, 20 Sep 2018 22:33:54 -0500
Subject: [PATCH] Logging: Change the TimeStretch::Process log from debug to
 trace level.

This function is called too many times and makes the debug logging basically unusable due to the spam.
---
 src/audio_core/time_stretch.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/audio_core/time_stretch.cpp b/src/audio_core/time_stretch.cpp
index eec35e87a..d36690b2b 100644
--- a/src/audio_core/time_stretch.cpp
+++ b/src/audio_core/time_stretch.cpp
@@ -59,7 +59,7 @@ std::size_t TimeStretcher::Process(const s16* in, std::size_t num_in, s16* out,
     stretch_ratio = std::max(stretch_ratio, 0.05);
     sound_touch->setTempo(stretch_ratio);
 
-    LOG_DEBUG(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, stretch_ratio,
+    LOG_TRACE(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, stretch_ratio,
               backlog_fullness);
 
     sound_touch->putSamples(in, static_cast<u32>(num_in));