[fix] ee3 error handling

This commit is contained in:
yawnt 2014-01-16 15:05:52 +01:00
parent 4351ed1c86
commit d23353d980

View File

@ -96,6 +96,10 @@ function ProxyServer(options) {
this.wsPasses = Object.keys(ws).map(function(pass) {
return ws[pass];
});
this.on('error', function(err) {
console.log(err);
});
}
require('util').inherits(ProxyServer, EE3);