From a4ec0a96f14a032eee9a576bcc66387777c1ebea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Otto=20Kr=C3=B6pke?= Date: Thu, 14 Nov 2024 23:12:28 +0100 Subject: [PATCH] chore: use slog instead gokit for logging style (#1737) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jan-Otto Kröpke --- internal/log/logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/log/logger.go b/internal/log/logger.go index ab3633ae..f3da5c70 100644 --- a/internal/log/logger.go +++ b/internal/log/logger.go @@ -63,7 +63,7 @@ func New(config *Config) (*slog.Logger, error) { } config.Config.Writer = config.File.w - config.Config.Style = promslog.GoKitStyle + config.Config.Style = promslog.SlogStyle return promslog.New(config.Config), nil }