fix(clustertool): remove undue verbosity listing required and ignored pods froms tatuschecks

This commit is contained in:
Kjeld Schouten
2024-10-26 14:31:02 +02:00
parent 72e7f13b7b
commit 81894b817f
+2 -1
View File
@@ -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")