fix: suppress Essentia log spam in audio analyzer

This commit is contained in:
Kevin O'Neill
2025-12-25 19:29:12 -06:00
parent 021aec7a63
commit 27b03e4b8f

View File

@@ -51,6 +51,9 @@ logger = logging.getLogger('audio-analyzer')
ESSENTIA_AVAILABLE = False
try:
import essentia
# Suppress Essentia's internal "No network created" warnings that spam logs
essentia.log.warningActive = False
essentia.log.infoActive = False
import essentia.standard as es
ESSENTIA_AVAILABLE = True
except ImportError as e: