Skip to content

Commit

Permalink
Update eslint/babel-eslint-parser/src/client.cjs
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxingbaoyu committed May 19, 2022
1 parent ea5a20d commit 6a1cd01
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions eslint/babel-eslint-parser/src/client.cjs
Expand Up @@ -87,9 +87,11 @@ exports.WorkerClient = class WorkerClient extends Client {
subChannel.port2,
);

console.log(
`WORKER COMMUNICATION: i=${i}, wakeReason=${wakeReason}, hasResponse=${!!response}`,
);
if (i > 0) {
console.log(
`WORKER COMMUNICATION: i=${i}, wakeReason=${wakeReason}, hasResponse=${!!response}`,
);
}
} while (!response && i++ < 100);

const { message } = response;
Expand Down

0 comments on commit 6a1cd01

Please sign in to comment.