diff --git a/internal/log/logging.go b/internal/log/logging.go index e46c7aa..ca78930 100644 --- a/internal/log/logging.go +++ b/internal/log/logging.go @@ -34,6 +34,9 @@ func Init(writer string) { ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr { if a.Key == slog.TimeKey { a.Value = slog.StringValue(a.Value.Time().Format(time.DateTime)) + + // To disable the timestamp all together, return an empty value. + // return slog.Attr{} } if a.Key == slog.LevelKey { level := a.Value.Any().(slog.Level) @@ -44,6 +47,7 @@ func Init(writer string) { a.Value = slog.StringValue(levelLabel) } + return a }, }