From c1db6edf392223936274151242bd2ca810669a5c Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sat, 22 Feb 2025 21:49:14 -0600 Subject: [PATCH] adds timestamp disable --- internal/log/logging.go | 4 ++++ 1 file changed, 4 insertions(+) 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 }, }