"SEVERE" log level should be highlighted in red instead of green
unkarjedy opened this issue · 5 comments
unkarjedy commented
unkarjedy commented
Also "WARN" could be orange in this case, not "RED"
annikovk commented
Why SEVERE should be red? If I remember correctly - there are cases when it does not indicate an error, aren't they?
unkarjedy commented
From java.util.logging.Level#SEVERE
SEVERE is a message level indicating a serious failure.
In general SEVERE messages should describe events that are
of considerable importance and which will prevent normal
program execution. They should be reasonably intelligible
to end users and to system administrators.
unkarjedy commented
And there is no "ERROR" in java.util.logging.Level#standardLevels
, only "SEVERE":
private static final Level[] standardLevels = {
OFF, SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST, ALL
};
annikovk commented
Thank you for the explanation. Fixed