2

I am using the StompJS javascript client along with SockJS It seems to log every single message and event on the chrome dev console.

How do i prevent StompJS from logging every single event on the console?

pdeva
  • 43,605
  • 46
  • 133
  • 171

1 Answers1

3

ok apparently the answer was just to do this:

stompClient.debug = function (){};//do nothing
pdeva
  • 43,605
  • 46
  • 133
  • 171