From 81754de1795b3f194ac2a72ceff65731853f52a1 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Sat, 1 Feb 2025 09:37:33 -0500 Subject: [PATCH] chore(cmd/joj3): log attrs --- cmd/joj3/log.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/joj3/log.go b/cmd/joj3/log.go index bef2e13..7f6c59f 100644 --- a/cmd/joj3/log.go +++ b/cmd/joj3/log.go @@ -147,5 +147,6 @@ func setupSlog(conf *conf.Conf) error { if logPath != "" { slog.Info("debug log", "path", logPath) } + slog.LogAttrs(context.TODO(), slog.LevelInfo, "setup slog attrs", attrs...) return nil }