allow configuration of logger output.

This commit is contained in:
Hyatt 2025-02-14 15:35:04 -06:00
parent eb45137776
commit 6bbd75f6a4
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 13 additions and 4 deletions

View File

@ -23,6 +23,7 @@ func Init() Config {
}
// set logging Level
log.Init("text")
log.SetNumericLevel(cfg.LogLevel)
// set timezone & time format

View File

@ -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()
}