summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-22 01:30:28 -0400
committerGitHub <noreply@github.com>2018-09-22 01:30:28 -0400
commit0246db9ea2752177067d2892aeae9dd8f9820a28 (patch)
treed45f318d70ee790e466809612ed36c439b0a9501 /src
parent2d5f51bb9ba1845785d1b7cd11ef1f510df6d054 (diff)
parent8ba21e28cf4f52470dc024d27e3c837062bc665a (diff)
Merge pull request #1376 from Subv/timestretch_trace
Logging: Change the TimeStretch::Process log from debug to trace level.
Diffstat (limited to 'src')
-rw-r--r--src/audio_core/time_stretch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/time_stretch.cpp b/src/audio_core/time_stretch.cpp
index fc14151da..d72d67994 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,
m_stretch_ratio = std::max(m_stretch_ratio, 0.05);
m_sound_touch.setTempo(m_stretch_ratio);
- LOG_DEBUG(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, m_stretch_ratio,
+ LOG_TRACE(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, m_stretch_ratio,
backlog_fullness);
m_sound_touch.putSamples(in, static_cast<u32>(num_in));