]> git.ipfire.org Git - thirdparty/asterisk.git/commit
dsp.c: Improve debug logging in tone_detect().
authorNaveen Albert <asterisk@phreaknet.org>
Fri, 15 Aug 2025 12:32:00 +0000 (08:32 -0400)
committerGeorge Joseph <gjoseph@sangoma.com>
Wed, 17 Sep 2025 19:36:51 +0000 (13:36 -0600)
commit348aeecbc1a6ce7785d2f16b1805ba920ed5c363
tree259d4365e0feb2ac2685d588acf4186edf19021a
parentc3246769657f4f39af501f124b154ac373d23f88
dsp.c: Improve debug logging in tone_detect().

The debug logging during DSP processing has always been kind
of overwhelming and annoying to troubleshoot. Simplify and
improve the logging in a few ways to aid DSP debugging:

* If we had a DSP hit, don't also emit the previous debug message that
  was always logged. It is duplicated by the hit message, so this can
  reduce the number of debug messages during detection by 50%.
* Include the hit count and required number of hits in the message so
  on partial detections can be more easily troubleshot.
* Use debug level 9 for hits instead of 10, so we can focus on hits
  without all the noise from the per-frame debug message.
* 1-index the hit count in the debug messages. On the first hit, it
  currently logs '0', just as when we are not detecting anything,
  which can be confusing.

Resolves: #1375
(cherry picked from commit 8bfa3be27fe0674ed7fd24a9be756493d4478ad3)
main/dsp.c