@ynhcj/xiaoyi-channel 0.0.32-beta → 0.0.33-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/websocket.js +1 -1
- package/package.json +1 -1
package/dist/src/websocket.js
CHANGED
|
@@ -143,7 +143,7 @@ export class XYWebSocketManager extends EventEmitter {
|
|
|
143
143
|
throw new Error(`WebSocket ${server} not ready`);
|
|
144
144
|
}
|
|
145
145
|
const messageStr = JSON.stringify(message);
|
|
146
|
-
console.log(`[WS-${server}-SEND] Sending message frame:`, JSON.stringify(message, null, 2));
|
|
146
|
+
// console.log(`[WS-${server}-SEND] Sending message frame:`, JSON.stringify(message, null, 2));
|
|
147
147
|
ws.send(messageStr);
|
|
148
148
|
console.log(`[WS-${server}-SEND] Message sent successfully, size: ${messageStr.length} bytes`);
|
|
149
149
|
}
|