diff --git a/app/controllers/socket.js b/app/controllers/socket.js index 4288c82..50d5733 100644 --- a/app/controllers/socket.js +++ b/app/controllers/socket.js @@ -10,7 +10,6 @@ module.exports.init = function(app, io_ext) { ios.set('log level', 1); // reduce logging ios.sockets.on('connection', function(socket) { socket.on('subscribe', function(topic) { - console.log('someone subscribed to ' + topic); socket.join(topic); }); });