diff options
Diffstat (limited to 'protoype/app.js')
-rw-r--r-- | protoype/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protoype/app.js b/protoype/app.js index d809a87..450112e 100644 --- a/protoype/app.js +++ b/protoype/app.js @@ -172,7 +172,7 @@ app.listen(8081, function() { util.log('[server] new connection from ' + socket.remoteAddress + ':' + socket.remotePort); socket.on('close', function() { /* delete connected_clients */ - console.log('[server] client ' + this.myip + ':' + this.myport + ' closed connection\n'); + util.log('[server] client ' + this.myip + ':' + this.myport + ' closed connection\n'); }); }) .on('close', function() { |