Merge pull request #125 from qbit/develop

Unify the log/formatting_*.go files for all unix like OSs
This commit is contained in:
Daniel 2021-05-04 10:25:24 +02:00 committed by GitHub
commit b04e4be0a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 38 deletions

View file

@ -1,38 +0,0 @@
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"
}

View file

@ -1,3 +1,5 @@
// +build !windows
package log
const (

View file

@ -1,3 +1,5 @@
// +build windows
package log
import (