simplelog/console_handler.go

31 lines
600 B
Go
Raw Normal View History

2024-05-14 04:43:47 +00:00
package simplelog
import (
2024-05-14 11:50:42 +00:00
"log/slog"
2024-05-14 04:43:47 +00:00
"github.com/fatih/color"
)
type ConsoleHandler struct{}
func NewConsoleHandler() *ConsoleHandler {
return &ConsoleHandler{}
}
func (c *ConsoleHandler) Handle(ctx context.Context, record slog.Record) error {
color.New(color.FgBlue).PrintfFunc()("%s: %s\n", record.Level, record.Message)
2024-05-14 04:43:47 +00:00
return nil
}
func (c *ConsoleHandler) Enabled(ctx context.Context, level slog.Level) bool {
return true
}
func (c *ConsoleHandler) WithAttrs(attrs []slog.Attr) slog.Handler {
return c
}
func (c *ConsoleHandler) WithGroup(name string) slog.Handler {
return c
}