From: Jack Allnutt Date: Tue, 19 Jul 2011 05:40:13 +0000 (+0100) Subject: removing unneeded debugging calls X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6f3ba6a4785a22b5dfd785186a612148b4c71845;p=KiwiIRC.git removing unneeded debugging calls --- diff --git a/js/gateway.js b/js/gateway.js index 5fe294c..320f8b7 100644 --- a/js/gateway.js +++ b/js/gateway.js @@ -16,7 +16,6 @@ var gateway = { if (typeof kiwi_server !== 'undefined') { gateway.socket = io.connect(kiwi_server); gateway.socket.on('connect', function () { - console.debug("Connecting to " + kiwi_server); gateway.sendData = function (data, callback) { gateway.socket.emit('message', {sid: this.session_id, data: $.toJSON(data)}, callback); }; @@ -53,7 +52,6 @@ var gateway = { debug */ parse: function (item) { - console.debug('a',item); if (item.event !== undefined) { $(gateway).trigger("on" + item.event, item);