From 245764eab4f597d3bfcca75e86f9512d49792706 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Mon, 7 Jun 2021 14:43:14 -0400 Subject: [PATCH] chore(executor): Adjust resource JSON object log to debug level (#6100) Signed-off-by: Yuan Tang --- workflow/executor/resource.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/executor/resource.go b/workflow/executor/resource.go index 056bcf78fff7..c71c7f7d6a8a 100644 --- a/workflow/executor/resource.go +++ b/workflow/executor/resource.go @@ -248,7 +248,7 @@ func (we *WorkflowExecutor) checkResourceState(ctx context.Context, selfLink str return false, err } jsonString := string(jsonBytes) - log.Info(jsonString) + log.Debug(jsonString) if !gjson.Valid(jsonString) { return false, errors.Errorf(errors.CodeNotFound, "Encountered invalid JSON response when checking resource status. Will not be retried: %q", jsonString) }