-
Enhancement
-
Resolution: Done
-
Major
-
3.2.0.Final
-
None
The RGB color (66, 66, 66) which is calculated using the render() method of the class: ColorPatternFormatter to show the TRACE level is too dark when the user is running their quarkus, java applications using a dark terminal
// see: https://github.com/jboss-logging/jboss-logmanager/blob/e29255a588f7779c661ca96cb41874a8394b33f6/src/main/java/org/jboss/logmanager/formatters/ColorPatternFormatter.java#L187-L196 final int level = Math.max(Math.min(LEVEL, LARGEST_LEVEL), SMALLEST_LEVEL) - SMALLEST_LEVEL; r = ((level < 300 ? 0 : (level - 300) * (255 - SATURATION) / 300) + SATURATION) >>> darken; g = ((300 - abs(level - 300)) * (255 - SATURATION) / 300 + SATURATION) >>> darken; b = ((level > 300 ? 0 : level * (255 - SATURATION) / 300) + SATURATION) >>> darken;