diff --git a/lib/data/redis.js b/lib/data/redis.js index b0a1069..a9b1e90 100644 --- a/lib/data/redis.js +++ b/lib/data/redis.js @@ -104,7 +104,7 @@ db.prototype = { for (i in res) { cards.push( JSON.parse(res[i]) ); } - console.dir(cards); + //console.dir(cards); callback(cards); }); diff --git a/lib/rooms.js b/lib/rooms.js index be2bb0d..21d44c6 100644 --- a/lib/rooms.js +++ b/lib/rooms.js @@ -61,7 +61,7 @@ exports.remove_from_all_rooms = function (client, callback) { } } } - console.log('Client ' + client.username + ' (' + client.id + ') disconnected.'); + //console.log('Client ' + client.username + ' (' + client.id + ') disconnected.'); delete sid_rooms[client.id]; callback(affected_clients.array()); } @@ -108,10 +108,10 @@ exports.room_clients_other_than_me = function(room, client) { if (rooms.hasOwnProperty(room)) { var clients = rooms[room]; - console.dir(clients.array()); + //console.dir(clients.array()); clients.remove(client); - console.dir(clients.array()); + //console.dir(clients.array()); return clients.array(); } else @@ -218,12 +218,12 @@ exports.broadcast_to_roommates = function (client, msg) { roommates.remove(client); roommates = roommates.array(); - console.log('client: ' + client.id + " is broadcasting to: "); + //console.log('client: ' + client.id + " is broadcasting to: "); for (var i = 0; i < roommates.length; i++) { - console.log(' - ' + roommates[i].id); + //console.log(' - ' + roommates[i].id); roommates[i].json.send(msg); } } diff --git a/server.js b/server.js index 909edcc..3f6bec5 100644 --- a/server.js +++ b/server.js @@ -85,6 +85,8 @@ io.configure(function () { // , 'xhr-polling' , 'jsonp-polling' ]); + + io.set('log level', 1); }); io.sockets.on('connection', function (client) { // new client is here!