Log exit code
Reviewed By: @martinbigio Differential Revision: D2467457
This commit is contained in:
parent
cee01bef4f
commit
7806c0875b
|
@ -33,7 +33,10 @@ class SocketServer {
|
||||||
options
|
options
|
||||||
);
|
);
|
||||||
resolve(this);
|
resolve(this);
|
||||||
process.on('exit', () => fs.unlinkSync(sockPath));
|
process.on('exit', code => {
|
||||||
|
debug('exit code:', code);
|
||||||
|
fs.unlinkSync(sockPath);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue