I would like remove the debug frame mode.

I use express,redis,socket.io and connect-redis

I do not know where it comes from

Node debug

someone has an idea?

link|improve this question

50% accept rate
2  
Sounds like socket.io is outputting this. You forgot to mention your using socket.io – Raynos Jul 24 '11 at 15:42
feedback

2 Answers

up vote 18 down vote accepted

Update

To completely remove debugging use:

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
link|improve this answer
2  
thank you very much, you're the best x) – Vsplit Jul 24 '11 at 15:58
Haha you are right that I am pretty good, but if I am the best :P. I don't know.... – Alfred Jul 24 '11 at 16:11
I just tried this, but I'm getting TypeError: Object #<Object> has no method 'set' ... what's wrong? I have io = require("socket.io") – user644745 Oct 10 '11 at 7:51
1  
@user644745: It works for me if you set io to require("socket.io").listen(app) (or something similar). Thanks much for the answer, those logs were verbose and messing up the console. – pimvdb Nov 29 '11 at 12:42
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.