Skip to content
Snippets Groups Projects
Commit 2eeb667b authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #29271: audiobuffer: downgrade severity of message

parent 4bb5100f
Branches
No related tags found
No related merge requests found
...@@ -108,7 +108,7 @@ void AudioBuffer::applyGain(double gain) ...@@ -108,7 +108,7 @@ void AudioBuffer::applyGain(double gain)
const double g = std::max(std::min(1.0, gain), -1.0); const double g = std::max(std::min(1.0, gain), -1.0);
if (g != gain) if (g != gain)
WARN("Normalizing %f to [-1.0, 1.0]", gain); DEBUG("Normalizing %f to [-1.0, 1.0]", gain);
for (auto &channel : samples_) for (auto &channel : samples_)
for (auto &sample : channel) for (auto &sample : channel)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment