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 // set logging Level
log.Init("text")
log.SetNumericLevel(cfg.LogLevel) log.SetNumericLevel(cfg.LogLevel)
// set timezone & time format // set timezone & time format

View File

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