diff options
author | Kyle K <kylek389@gmail.com> | 2012-08-10 22:07:49 -0500 |
---|---|---|
committer | Kyle Kaminski <kyle@kkaminsk.com> | 2012-08-10 22:07:49 -0500 |
commit | 6fd7f7e76a9dee93d2440b1a0e57c2d081046344 (patch) | |
tree | 5631d98000832d16af5d5dd69f6f7d5f621dab2f /protoype | |
parent | 4736d0ea965dbcc1cfb71161e0cf62d43e10b159 (diff) | |
download | fubar-6fd7f7e76a9dee93d2440b1a0e57c2d081046344.tar.gz fubar-6fd7f7e76a9dee93d2440b1a0e57c2d081046344.tar.bz2 fubar-6fd7f7e76a9dee93d2440b1a0e57c2d081046344.zip |
typos and shit
Diffstat (limited to 'protoype')
-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() { |