I have the follow situation:
var options = { protocols_whitelist : [ \"websocket\", \"xhr-streaming\", \"xdr-streaming\", \"xhr-polling\", \"xdr-polling
I tried JR's answer but started receiving errors (was using redux sagas) - changing debug to an empty function worked ...
stompClient.debug = () => {};
Ok I found a solution.
I added this code:
stompClient.debug = null
In this way, the debug function is disabled.