add more debug

This commit is contained in:
Logan Cusano
2025-07-14 21:58:03 -04:00
parent 0a0d8d3af9
commit e3566fb367

View File

@@ -112,6 +112,12 @@ class DiscordBotManager:
LOGGER.info(f"Checking opus status before transmitter init: {opus.is_loaded()}")
try:
encoder = opus.OpusEncoder()
LOGGER.info(f"Manually created OpusEncoder successfully: {encoder}")
except Exception as e:
LOGGER.error(f"MANUAL ENCODER CREATION FAILED: {e}", exc_info=True)
# Create and start the new AudioTransmitter
transmitter = AudioTransmitter(
voice_client=voice_client,