From 9dbaa834bfd1f53e1df6f880fd3730a755df1d1e Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 15 Apr 2026 12:01:10 +0200 Subject: [PATCH] log: gofmt --- log/handler_glog.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/log/handler_glog.go b/log/handler_glog.go index 42d298324e..b465e44cb4 100644 --- a/log/handler_glog.go +++ b/log/handler_glog.go @@ -205,8 +205,8 @@ func (h *GlogHandler) WithAttrs(attrs []slog.Attr) slog.Handler { return &glogWithAttrs{base: h, origin: h.origin.WithAttrs(attrs)} } -type glogWithAttrs struct{ - base *GlogHandler +type glogWithAttrs struct { + base *GlogHandler origin slog.Handler } @@ -229,4 +229,3 @@ func (wh *glogWithAttrs) WithAttrs(attrs []slog.Attr) slog.Handler { func (wh *glogWithAttrs) WithGroup(name string) slog.Handler { panic("not implemented") } -