如何从 Express 应用程序中删除调试?

发布于 2024-11-26 07:57:37 字数 215 浏览 4 评论 0原文

我想删除调试模式。我正在使用 expressredissocket.ioconnect-redis,但我不知道在哪里调试模式来自。

Node debug

有人有想法吗?

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.

Node debug

Someone has an idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玩物 2024-12-03 07:57:37

更新

要完全删除调试使用:

var io = require('socket.io').listen(app, { log: false });

其中app是node.js http服务器/express等。


您忘记提及您也在使用socket.io。这来自 socket.io。您可以通过配置禁用此功能:

io.set('log level', 1); // reduce logging

Update

To completely remove debugging use:

var io = require('socket.io').listen(app, { log: false });

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:

io.set('log level', 1); // reduce logging
我爱人 2024-12-03 07:57:37

只需将日志级别配置为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文