refactor(ngcc): add debug messages to help with debugging in parallel mode (#34437)

PR Close #34437
This commit is contained in:
George Kalpakas
2019-12-05 21:02:57 +02:00
committed by Kara Erickson
parent 5cecd97493
commit cd8a837956
4 changed files with 35 additions and 11 deletions

View File

@ -39,7 +39,7 @@ export class ClusterExecutor implements Executor {
return master.run();
} else {
// This process is a cluster worker.
const worker = new ClusterWorker(createCompileFn);
const worker = new ClusterWorker(this.logger, createCompileFn);
return worker.run();
}
}