diff --git a/common/cloud_client.py b/common/cloud_client.py index 162f1d6..064bca2 100644 --- a/common/cloud_client.py +++ b/common/cloud_client.py @@ -339,7 +339,7 @@ class CloudClient(LinkAIClient): self.channel_mgr.add_channel(channel_type) logger.info(f"[CloudClient] Channel '{channel_type}' added successfully") except Exception as e: - logger.error(f"[CloudClient] Failed to add channel '{channel_type}': {e}") + logger.error(f"[CloudClient] Failed to add channel '{channel_type}': {e}", exc_info=True) self.send_channel_status(channel_type, "error", str(e)) return self._report_channel_startup(channel_type)