Skip to content

Commit

Permalink
fix(clustertool): remove undue verbosity listing required and ignored…
Browse files Browse the repository at this point in the history
… pods froms tatuschecks
  • Loading branch information
PrivatePuffin committed Oct 26, 2024
1 parent 72e7f13 commit 81894b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clustertool/pkg/kubectlcmds/checkstatus.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ func CheckStatus(requiredPods []string, excludePod []string, timeout time.Durati
maxDuration := timeout * time.Minute
endTime := time.Now().Add(maxDuration)

log.Info().Msgf("Checking status of required pods: %v, excluding pods: %v", requiredPods, excludePod)
log.Info().Msg("Checking status of required pods")
log.Debug().Msgf("required pods: %v, excluding pods: %v", requiredPods, excludePod)

for time.Now().Before(endTime) {
log.Debug().Msg("Retrieving list of pods")
Expand Down

0 comments on commit 81894b8

Please sign in to comment.