mirror of
https://github.com/safing/portbase
synced 2025-09-01 18:19:57 +00:00
This switches to using the +build tag in log/formatting so that a single file can be used to build for *NIX machines (everything that isn't 'windows').
40 lines
629 B
Go
40 lines
629 B
Go
// +build !windows
|
|
|
|
package log
|
|
|
|
const (
|
|
rightArrow = "▶"
|
|
leftArrow = "◀"
|
|
)
|
|
|
|
const (
|
|
// colorBlack = "\033[30m"
|
|
colorRed = "\033[31m"
|
|
// colorGreen = "\033[32m"
|
|
colorYellow = "\033[33m"
|
|
colorBlue = "\033[34m"
|
|
colorMagenta = "\033[35m"
|
|
colorCyan = "\033[36m"
|
|
// colorWhite = "\033[37m"
|
|
)
|
|
|
|
func (s Severity) color() string {
|
|
switch s {
|
|
case DebugLevel:
|
|
return colorCyan
|
|
case InfoLevel:
|
|
return colorBlue
|
|
case WarningLevel:
|
|
return colorYellow
|
|
case ErrorLevel:
|
|
return colorRed
|
|
case CriticalLevel:
|
|
return colorMagenta
|
|
default:
|
|
return ""
|
|
}
|
|
}
|
|
|
|
func endColor() string {
|
|
return "\033[0m"
|
|
}
|