With nowjs how do I configure the lower level socket.io's logging level and it's per connection (global) authentication level?
For example if I were just using socket.io I would use the following code:
socketServer.configure(function (){
socketServer.set('authorization', function (handshakeData, callback) {
callback(null, true); // error first callback style
});
socketServer.set('log level', 1);
});
Thanks!!