From c97d51c48fabca7edd7eaccbe84276050385218c Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sat, 22 Feb 2025 21:33:37 -0600 Subject: [PATCH] Change time --- internal/config/struct-config.go | 6 ++++++ internal/log/logging.go | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/internal/config/struct-config.go b/internal/config/struct-config.go index cd3335b..79b2fa7 100644 --- a/internal/config/struct-config.go +++ b/internal/config/struct-config.go @@ -8,6 +8,12 @@ import ( "example.com/golang-base/internal/log" ) +// Config uses struct tags to configure the application. +// (default) Default value to be used if unset or not defined. +// (ignored) Don't process the current tag. +// (info) String to be presented to the user on -help use. +// (secret) If set to true, hide the value from being output on start-up. +// (env) environment variable to be used if not set on command line. type Config struct { // time configuration TimeFormat string `default:"2006-01-02 15:04:05" env:"time_format"` diff --git a/internal/log/logging.go b/internal/log/logging.go index 99f9cb2..e46c7aa 100644 --- a/internal/log/logging.go +++ b/internal/log/logging.go @@ -4,6 +4,7 @@ import ( "context" "log/slog" "os" + "time" ) const ( @@ -31,6 +32,9 @@ func Init(writer string) { slogOptions := &slog.HandlerOptions{ Level: &L.SLogLevel, ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr { + if a.Key == slog.TimeKey { + a.Value = slog.StringValue(a.Value.Time().Format(time.DateTime)) + } if a.Key == slog.LevelKey { level := a.Value.Any().(slog.Level) levelLabel, exists := LevelNames[level]