Remove unnecessary log

This commit is contained in:
syuilo 2019-02-03 01:04:38 +09:00
parent cd9d67389a
commit 122ef23e0f
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 0 additions and 1 deletions

View File

@ -234,7 +234,6 @@ function spawnWorker(): Promise<void> {
const worker = cluster.fork();
worker.on('message', message => {
if (message !== 'ready') return;
bootLogger.succ('A worker started');
res();
});
});