2

我在heroku上使用socket.io。为此,我必须在 heroku 上使用 xhr-polling。然而,这使得它创建了大量的日志。

2013-04-25T20:15:49.255467+00:00 heroku[router]: at=info method=GET path=/socket.io/1/xhr-polling/cOO67jH_mH2cIjDt5OWX?t=1372192165157 host=xyz.com fwd="123.12.12.123" dyno=web.1 connect=1ms service=2044ms status=200 bytes=3

我尝试通过使用减少套接字 io 所做的日志记录量

io.configure ()-> 
    io.set "transports", ["xhr-polling"]

但看起来日志记录可能处于 heroku 级别,而不是 socket.io 级别。

4

1 回答 1

1

您可以更改日志记录级别。寻找“日志级别”... https://github.com/LearnBoost/Socket.IO/wiki/Configuring-Socket.IO

于 2014-05-07T02:48:14.880 回答