You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
L61 specifies that one can completely disable logging by setting the option log: false, upon doing so, Socket.IO will throw an exception about L116: this.log.info('socket.io started');
This is due to L140: if (this.disabled('log')) return;
this.log is undefined now, and undefined does not respond to info
The text was updated successfully, but these errors were encountered:
L61 specifies that one can completely disable logging by setting the option
log: false
, upon doing so, Socket.IO will throw an exception about L116:this.log.info('socket.io started');
This is due to L140:
if (this.disabled('log')) return;
this.log is undefined now, and undefined does not respond to
info
The text was updated successfully, but these errors were encountered: