diff --git a/src/checker/runtime.ts b/src/checker/runtime.ts index b7fa804..307619c 100644 --- a/src/checker/runtime.ts +++ b/src/checker/runtime.ts @@ -396,6 +396,7 @@ function createChecker(receive: (cb: (msg: Req) => void) => void, send: (msg: Re if (allDiagnostics.length) { console.error(colors.red(`\n[${ instanceName }] Checking finished with ${ allDiagnostics.length } errors`)); + allDiagnostics.map(function(err) { console.error(colors.red(err.messageText)); }); } else { if (!silent) { let timeEnd = +new Date();