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