From e30fe7e3cb0098f64c27c7a751892e5ee08ea02d Mon Sep 17 00:00:00 2001 From: dcode Date: Wed, 12 Jun 2019 08:42:21 +0200 Subject: [PATCH] comment out debug log --- src/diagnostics.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/diagnostics.ts b/src/diagnostics.ts index 2eff86a3..9368bf94 100644 --- a/src/diagnostics.ts +++ b/src/diagnostics.ts @@ -280,8 +280,8 @@ export abstract class DiagnosticEmitter { var message = DiagnosticMessage.create(code, category, arg0, arg1, arg2).withRange(range); if (relatedRange) message.relatedRange = relatedRange; this.diagnostics.push(message); - console.log(formatDiagnosticMessage(message, true, true) + "\n"); // temporary - console.log(new Error("stack").stack); + // console.log(formatDiagnosticMessage(message, true, true) + "\n"); // temporary + // console.log(new Error("stack").stack); } /** Emits an informatory diagnostic message. */