diff --git a/internal/secret/debug.go b/internal/secret/debug.go index 7c15c01..1d4c6b9 100644 --- a/internal/secret/debug.go +++ b/internal/secret/debug.go @@ -123,13 +123,13 @@ func (h *colorizedHandler) Handle(_ context.Context, record slog.Record) error { return err } -func (h *colorizedHandler) WithAttrs(attrs []slog.Attr) slog.Handler { +func (h *colorizedHandler) WithAttrs(_ []slog.Attr) slog.Handler { // For simplicity, return the same handler // In a more complex implementation, we'd create a new handler with the attrs return h } -func (h *colorizedHandler) WithGroup(name string) slog.Handler { +func (h *colorizedHandler) WithGroup(_ string) slog.Handler { // For simplicity, return the same handler // In a more complex implementation, we'd create a new handler with the group return h