From 55c53ea1249fb818632f445525c0afb6c8c5c4f9 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Fri, 31 Jan 2025 20:01:25 -0500 Subject: [PATCH] feat(healthcheck): debug log args for teapot --- pkg/healthcheck/teapot.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/healthcheck/teapot.go b/pkg/healthcheck/teapot.go index 83b40b3..0b45f9c 100644 --- a/pkg/healthcheck/teapot.go +++ b/pkg/healthcheck/teapot.go @@ -33,6 +33,7 @@ func runTeapot(conf *conf.Conf) (checkResults []CheckResult, err error) { conf.Teapot.ScoreboardPath, "--group-config", strings.Join(formattedGroups, ","), } + slog.Debug("teapot check args", "args", args) var stdoutBuf, stderrBuf bytes.Buffer cmd := exec.Command("joint-teapot", args...) // #nosec G204 cmd.Stdout = &stdoutBuf