Made diagnostic lowercase.

This commit is contained in:
Daniel Rosenwasser
2014-08-22 12:57:18 -07:00
parent c3590aa233
commit d05a4c40b5
+1 -1
View File
@@ -94,7 +94,7 @@ module ts {
output += diagnostic.file.filename + "(" + loc.line + "," + loc.character + "): ";
}
var category = DiagnosticCategory[diagnostic.category];
var category = DiagnosticCategory[diagnostic.category].toLowerCase();
output += category + " TS" + diagnostic.code + ": " + diagnostic.messageText + sys.newLine;
sys.write(output);