JetBrains/IntelliJ-Log-Analyzer

"SEVERE" log level should be highlighted in red instead of green

unkarjedy opened this issue · 5 comments

Also "WARN" could be orange in this case, not "RED"

Why SEVERE should be red? If I remember correctly - there are cases when it does not indicate an error, aren't they?

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.

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
    };

Thank you for the explanation. Fixed