remove error log from socket errors

We don't care, just close the socket
This commit is contained in:
Roman Shtylman
2013-11-10 00:19:55 -05:00
parent ac1fbc740e
commit 1fe63831d8

View File

@@ -95,7 +95,6 @@ var Proxy = function(opt, cb) {
// close will be emitted after this
socket.on('error', function(err) {
log.error(err);
socket.end();
});