如何从 Express 应用程序中删除调试?
我想删除调试模式。我正在使用 express
、redis
、socket.io
和 connect-redis
,但我不知道在哪里调试模式来自。
有人有想法吗?
I would like to remove the debugging mode. I am using express
, redis
, socket.io
and connect-redis
, but I do not know where the debugging mode comes from.
Someone has an idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更新
要完全删除调试使用:
其中
app
是node.js http服务器/express等。您忘记提及您也在使用socket.io。这来自 socket.io。您可以通过配置禁用此功能:
Update
To completely remove debugging use:
Where
app
is node.js http server / express etc.You forgot to mention you are also using socket.io. This is coming from socket.io. You can disable this by configuration:
只需将日志级别配置为 1 即可避免收入不必要的消息。
您可以通过此链接。
Just configure the log level to number 1 to avoid income unnecessary messages.
You can figure out more information about Socket.IO options on this link.