From a9f0622ed9750593ca6de12a27bb3a92c4e419e4 Mon Sep 17 00:00:00 2001 From: Raúl Benencia Date: Fri, 5 Jun 2026 09:53:24 -0300 Subject: Use slog logging Drop go-kit/kit/log in favor of the now standard log/slog. --- vendor/github.com/go-kit/kit/log/logfmt_logger.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 vendor/github.com/go-kit/kit/log/logfmt_logger.go (limited to 'vendor/github.com/go-kit/kit/log/logfmt_logger.go') diff --git a/vendor/github.com/go-kit/kit/log/logfmt_logger.go b/vendor/github.com/go-kit/kit/log/logfmt_logger.go deleted file mode 100644 index 51cde2c..0000000 --- a/vendor/github.com/go-kit/kit/log/logfmt_logger.go +++ /dev/null @@ -1,15 +0,0 @@ -package log - -import ( - "io" - - "github.com/go-kit/log" -) - -// NewLogfmtLogger returns a logger that encodes keyvals to the Writer in -// logfmt format. Each log event produces no more than one call to w.Write. -// The passed Writer must be safe for concurrent use by multiple goroutines if -// the returned Logger will be used concurrently. -func NewLogfmtLogger(w io.Writer) Logger { - return log.NewLogfmtLogger(w) -} -- cgit v1.2.3