feat(analytics): refine timeline visualization and add print support

This commit is contained in:
2026-02-17 21:17:11 -05:00
parent 568d408587
commit 72971a4b49
82 changed files with 6670 additions and 2448 deletions

View File

@@ -145,7 +145,7 @@ export class WizardRosService extends EventEmitter {
};
this.ws.onerror = (error) => {
console.error("[WizardROS] WebSocket error:", error);
console.warn("[WizardROS] WebSocket error (connection may be retried):", error);
clearTimeout(connectionTimeout);
this.isConnecting = false;
@@ -773,7 +773,7 @@ export class WizardRosService extends EventEmitter {
try {
await this.connect();
} catch (error) {
console.error("[WizardROS] Reconnect failed:", error);
console.warn("[WizardROS] Reconnect failed:", error);
if (this.connectionAttempts < this.maxReconnectAttempts) {
this.scheduleReconnect();
} else {