generated from nhcarrigan/template
edd8fa5b55
Removes file-based logging from Discord RPC manager in favour of using the tracing framework exclusively. All Discord RPC logs now appear in the Debug Console with proper log levels. Changes: - Remove log_path field and file logging methods from DiscordRpcManager - Replace all self.log() calls with tracing macros (debug/info/error) - Remove log_discord_rpc command and its registration - Remove set_app_handle() call from main setup Benefits: - Reduces disk usage (no unbounded log file growth) - Eliminates maintenance burden of managing log files - Better log levels and integration with existing tracing system Closes: #129