chore(SocketIO): log connect error to console (#29911)

This commit is contained in:
Md Hussain Nagaria 2025-01-23 13:08:44 +05:30 committed by GitHub
parent 53e86379fe
commit f4741e7310
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,6 +65,10 @@ class RealTimeClient {
return;
}
this.socket.on("connect_error", function (err) {
console.error("Error connecting to socket.io:", err.message);
});
this.socket.on("msgprint", function (message) {
frappe.msgprint(message);
});