mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package log
|
|
|
|
import (
|
|
"github.com/logrusorgru/aurora"
|
|
F "github.com/sagernet/sing/common/format"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type logrusHook struct{}
|
|
|
|
func (h *logrusHook) Levels() []logrus.Level {
|
|
return logrus.AllLevels
|
|
}
|
|
|
|
func (h *logrusHook) Fire(entry *logrus.Entry) error {
|
|
if prefix, loaded := entry.Data["prefix"]; loaded {
|
|
prefixStr := prefix.(string)
|
|
delete(entry.Data, "prefix")
|
|
entry.Message = prefixStr + entry.Message
|
|
}
|
|
var idCtx *idContext
|
|
if entry.Context != nil {
|
|
idCtx, _ = entry.Context.Value(idType).(*idContext)
|
|
}
|
|
if idCtx != nil {
|
|
var color aurora.Color
|
|
color = aurora.Color(uint8(idCtx.id))
|
|
color %= 215
|
|
row := uint(color / 36)
|
|
column := uint(color % 36)
|
|
|
|
var r, g, b float32
|
|
r = float32(row * 51)
|
|
g = float32(column / 6 * 51)
|
|
b = float32((column % 6) * 51)
|
|
luma := 0.2126*r + 0.7152*g + 0.0722*b
|
|
if luma < 60 {
|
|
row = 5 - row
|
|
column = 35 - column
|
|
color = aurora.Color(row*36 + column)
|
|
}
|
|
color += 16
|
|
color = color << 16
|
|
color |= 1 << 14
|
|
entry.Message = F.ToString("[", aurora.Colorize(idCtx.id, color).String(), "] ", entry.Message)
|
|
}
|
|
return nil
|
|
}
|