My SignalR works as expected and I can catch a lot of errors client side using the following:-
this._connection.error(function (error:any) {
console.log(error);
});
The problem I have is when I stop the server to test the disconnect functionality I get something similar to the following:-
I've had this problem in the past using SignalR on different platforms, and I've finally reached my annoyance threshold.
This particular error will stop once the 30 second reconnect stops, however my question is how can I stop/handle all SignalR console errors?