Skip to content

Commit a86d76e

Browse files
authored
Merge branch 'master' into ddincheva/calendarBugFixs
2 parents 9305aad + c59e8de commit a86d76e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/migrations/common/tsLogger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ export class Logger implements ts.server.Logger {
2323
}
2424

2525
public msg(s: string, type: ts.server.Msg = ts.server.Msg.Err) {
26+
if (!this.traceToConsole) { return; }
2627
if (type === ts.server.Msg.Info) {
27-
// TODO: Info ignored for now, hook into context in the future
28-
// console.log(s);
28+
console.log(s);
2929
}
3030
if (type === ts.server.Msg.Err) {
3131
console.error(s);

0 commit comments

Comments
 (0)