From acd0b296712d666e2e842c3088c08e7ad96e52d7 Mon Sep 17 00:00:00 2001 From: David White Date: Sat, 11 Oct 2014 11:26:28 +0100 Subject: [PATCH] Remove old debug/logging lines --- src/identd.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/identd.js b/src/identd.js index d8d0142..5b35e86 100644 --- a/src/identd.js +++ b/src/identd.js @@ -69,7 +69,6 @@ Identd.prototype.start = function(config) { socket.end(); }); }); - log("Starting identd on " + this.config.port); this.server.listen(this.config.port); } @@ -79,14 +78,12 @@ Identd.prototype.start = function(config) { Identd.prototype.addConnection = function(connection) { if (this.config.enable) { this.connections.push(connection); - log("Identd: adding:", connection); } }; Identd.prototype.removeConnection = function(connection) { if (this.config.enable) { this.connections = _.without(this.connections, connection); - log("Identd: removing:", connection); } };