Remove old debug/logging lines
This commit is contained in:
parent
ea0e66afd0
commit
acd0b29671
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user