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
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,16 @@ Socket.IO is compatible with [browserify](http://browserify.org/) and [webpack](
48
48
socket.on('disconnect', function(){});
49
49
```
50
50
51
+
## Debug / logging
52
+
53
+
In order to see all the client debug output, run the following command on the browser console – including the desired scope – and reload your app page:
54
+
55
+
```
56
+
localStorage.debug = '*';
57
+
```
58
+
59
+
And then, filter by the scopes you're interested in. See also: https://socket.io/docs/logging-and-debugging/
0 commit comments