allow configuration of logger output.
This commit is contained in:
parent
eb45137776
commit
6bbd75f6a4
@ -23,6 +23,7 @@ func Init() Config {
|
||||
}
|
||||
|
||||
// set logging Level
|
||||
log.Init("text")
|
||||
log.SetNumericLevel(cfg.LogLevel)
|
||||
|
||||
// set timezone & time format
|
||||
|
@ -27,9 +27,8 @@ var (
|
||||
L = Log{}
|
||||
)
|
||||
|
||||
func init() {
|
||||
// Initialize SLog and translate new logging levels
|
||||
L.Log = slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{
|
||||
func Init(writer string) {
|
||||
slogOptions := &slog.HandlerOptions{
|
||||
Level: &L.SLogLevel,
|
||||
ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr {
|
||||
if a.Key == slog.LevelKey {
|
||||
@ -43,7 +42,16 @@ func init() {
|
||||
}
|
||||
return a
|
||||
},
|
||||
}))
|
||||
}
|
||||
|
||||
// Initialize SLog and translate new logging levels
|
||||
switch writer {
|
||||
case "json":
|
||||
L.Log = slog.New(slog.NewJSONHandler(os.Stdout, slogOptions))
|
||||
default:
|
||||
L.Log = slog.New(slog.NewTextHandler(os.Stdout, slogOptions))
|
||||
}
|
||||
// create context
|
||||
L.Ctx = context.Background()
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user