From 756052a4e0f6285af69abce8b2861677805c53c0 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 5 Oct 2015 16:06:12 -0700 Subject: [PATCH] Removing console logs that were for debugging --- src/compiler/commandLineParser.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/compiler/commandLineParser.ts b/src/compiler/commandLineParser.ts index 6daa1ec8857..603dff9e779 100644 --- a/src/compiler/commandLineParser.ts +++ b/src/compiler/commandLineParser.ts @@ -458,8 +458,6 @@ namespace ts { * @param jsonText The text of the config file */ export function parseConfigFileText(fileName: string, jsonText: string): { config?: any; error?: Diagnostic } { - console.log("fileName: \"" + fileName + "\""); - console.log("jsonText: \"" + jsonText + "\""); try { return { config: /\S/.test(jsonText) ? JSON.parse(jsonText) : {} }; }