fix: remove spammy log msg

This commit is contained in:
2026-02-11 02:29:17 -03:00
parent 99b06b574b
commit 1927728b60
+2 -2
View File
@@ -142,7 +142,7 @@ class AzureTTS implements TTSModule {
}); });
this.ws.on('open', () => { this.ws.on('open', () => {
this.log.verbose('WebSocket open'); // this.log.verbose('WebSocket open');
this.reconnectAttempts = 0; this.reconnectAttempts = 0;
this.isReconnecting = false; this.isReconnecting = false;
@@ -168,7 +168,7 @@ class AzureTTS implements TTSModule {
this.ws.on('close', (code/*, reason*/) => { this.ws.on('close', (code/*, reason*/) => {
this.ready = false; this.ready = false;
this.log.verbose(`WS Closed: ${code}`); // this.log.verbose(`WS Closed: ${code}`);
this.rejectAllPending(new Error("Connection closed")); this.rejectAllPending(new Error("Connection closed"));
this.scheduleReconnect(); this.scheduleReconnect();
}); });