]> 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)
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Mon, 18 Aug 2025 16:26:07 +0000 (16:26 +0000)
commitdc8e3eeaaf094a3d16991289934093d5e7127680
tree7dbba941d0f9b0117c50acf23e5d2690bc010fa3
parentab7ab9c1aa5f85539acbe71c3f708333edf820ca
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
main/dsp.c