log level
在 Socket.IO 中,我可以通过编辑选项来调整记录器的“详细程度” :
The amount of detail that the server should output to the logger.
0 - error
1 - warn
2 - info
3 - debug
现在我正在使用 Sock.js。我的日志文件被这些消息填充:
POST /733/o1q4zdmo/xhr_send?t=1380900035633 5ms 204
POST /733/o1q4zdmo/xhr_send?t=1380900036926 6ms 204
POST /733/o1q4zdmo/xhr_send?t=1380900041212 4ms 204
POST /733/o1q4zdmo/xhr_send?t=1380900045510 1ms 204
我想过滤它们。我怎么能在 Sock.js 中做到这一点?唯一的解决方案是覆盖日志功能?(使用log
设置),然后使用switch
过滤器过滤具有严重性的消息?