Removing console logs that were for debugging

This commit is contained in:
Sheetal Nandi 2015-10-05 16:06:12 -07:00
parent 567d71c848
commit 756052a4e0

View File

@ -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) : {} };
}