Skip to content

Commit 49f50e9

Browse files
test: debug
1 parent ce53763 commit 49f50e9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lib/Server.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -976,11 +976,18 @@ class Server {
976976
port: this.options.port,
977977
};
978978

979+
// eslint-disable-next-line no-console
980+
console.log(listenOptions);
981+
979982
return this.server.listen(listenOptions, (error) => {
983+
// eslint-disable-next-line no-console
984+
console.log('LISTEN');
980985
if (this.options.ipc) {
981986
// chmod 666 (rw rw rw)
982987
const READ_WRITE = 438;
983988

989+
// eslint-disable-next-line no-console
990+
console.log('CHANGE CHMOD');
984991
fs.chmodSync(this.options.ipc, READ_WRITE);
985992
}
986993

0 commit comments

Comments
 (0)