Skip to content

Commit

Permalink
Merge pull request #748 from shauneccles/fix/change_audio_frame_log
Browse files Browse the repository at this point in the history
Change audio frame size mismatch logging level to debug
  • Loading branch information
shauneccles committed Feb 16, 2024
2 parents c502149 + 4ec1c7a commit d986d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledfx/effects/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def _audio_sample_callback(self, in_data, frame_count, time_info, status):
processed_audio_sample = raw_sample

if len(processed_audio_sample) != out_sample_len:
_LOGGER.warning(
_LOGGER.debug(
f"Discarded malformed audio frame - {len(processed_audio_sample)} samples, expected {out_sample_len}"
)
return
Expand Down

0 comments on commit d986d06

Please sign in to comment.