We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26cc165 + cf5ecc7 commit c59e8deCopy full SHA for c59e8de
projects/igniteui-angular/migrations/common/tsLogger.ts
@@ -23,9 +23,9 @@ export class Logger implements ts.server.Logger {
23
}
24
25
public msg(s: string, type: ts.server.Msg = ts.server.Msg.Err) {
26
+ if (!this.traceToConsole) { return; }
27
if (type === ts.server.Msg.Info) {
- // TODO: Info ignored for now, hook into context in the future
28
- // console.log(s);
+ console.log(s);
29
30
if (type === ts.server.Msg.Err) {
31
console.error(s);
0 commit comments