removed timeout console.log

This commit is contained in:
Fabian Vogelsteller 2015-06-30 15:14:12 +02:00
parent 95b1b5f567
commit 30cc07227e
1 changed files with 1 additions and 2 deletions

View File

@ -38,12 +38,11 @@ var IpcProvider = function (path, net) {
this.connection = net.connect({path: this.path});
this.connection.on('error', function(e){
console.error('IPC Connection error', e);
console.error('IPC Connection Error', e);
_this._timeout();
});
this.connection.on('end', function(e){
console.error('IPC Connection ended', e);
_this._timeout();
});