Change time

This commit is contained in:
Hyatt 2025-02-22 21:33:37 -06:00
parent d2e07e98a5
commit c97d51c48f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 10 additions and 0 deletions

View File

@ -8,6 +8,12 @@ import (
"example.com/golang-base/internal/log" "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 { type Config struct {
// time configuration // time configuration
TimeFormat string `default:"2006-01-02 15:04:05" env:"time_format"` TimeFormat string `default:"2006-01-02 15:04:05" env:"time_format"`

View File

@ -4,6 +4,7 @@ import (
"context" "context"
"log/slog" "log/slog"
"os" "os"
"time"
) )
const ( const (
@ -31,6 +32,9 @@ func Init(writer string) {
slogOptions := &slog.HandlerOptions{ slogOptions := &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.TimeKey {
a.Value = slog.StringValue(a.Value.Time().Format(time.DateTime))
}
if a.Key == slog.LevelKey { if a.Key == slog.LevelKey {
level := a.Value.Any().(slog.Level) level := a.Value.Any().(slog.Level)
levelLabel, exists := LevelNames[level] levelLabel, exists := LevelNames[level]