mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 03:23:08 -06:00
Made diagnostic lowercase.
This commit is contained in:
parent
c3590aa233
commit
d05a4c40b5
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user