fix(logx): add missing color for levelSevere in wrapLevelWithColor (#5281)

This commit is contained in:
Yuntsy
2025-11-19 06:46:28 -08:00
committed by GitHub
parent 75941aedd4
commit 577a611dc3

View File

@@ -444,6 +444,8 @@ func wrapLevelWithColor(level string) string {
colour = color.FgRed
case levelError:
colour = color.FgRed
case levelSevere:
colour = color.FgRed
case levelFatal:
colour = color.FgRed
case levelInfo: