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.
express
redis
socket.io
connect-redis
Someone has an idea?
Update
To completely remove debugging use:
var io = require('socket.io').listen(app, { log: false });
Where app is node.js http server / express etc.
app
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
1.4m articles
1.4m replys
5 comments
57.0k users