Skip to content

Commit

Permalink
fix: Make these in-progress status messages just a trace level
Browse files Browse the repository at this point in the history
  • Loading branch information
jhutar committed May 16, 2024
1 parent 75fdeb9 commit ca6e9db
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/load-tests/pkg/journey/handle_applications.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func ValidateApplication(f *framework.Framework, name, namespace string) error {
}
}

logging.Logger.Debug("Still waiting for condition in application %s in namespace %s", name, namespace)
logging.Logger.Trace("Still waiting for condition in application %s in namespace %s", name, namespace)
return false, nil
}, interval, timeout)

Expand Down
2 changes: 1 addition & 1 deletion tests/load-tests/pkg/journey/handle_component.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func ValidateComponent(f *framework.Framework, namespace, name string) error {
}
}

logging.Logger.Debug("Still waiting for condition in component %s in namespace %s", name, namespace)
logging.Logger.Trace("Still waiting for condition in component %s in namespace %s", name, namespace)
return false, nil
}, interval, timeout)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func ValidateComponentDetectionQuery(f *framework.Framework, namespace, name str
return false, nil
}

logging.Logger.Debug("Still waiting for condition in component detection query %s in namespace %s", name, namespace)
logging.Logger.Trace("Still waiting for condition in component detection query %s in namespace %s", name, namespace)
return false, nil
}, interval, timeout)

Expand Down
4 changes: 2 additions & 2 deletions tests/load-tests/pkg/journey/handle_pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func ValidatePipelineRunCondition(f *framework.Framework, namespace, appName, co
}
}

logging.Logger.Debug("Still waiting for pipeline run condition for component %s in namespace %s", compName, namespace)
logging.Logger.Trace("Still waiting for pipeline run condition for component %s in namespace %s", compName, namespace)
return false, nil
}, interval, timeout)

Expand Down Expand Up @@ -96,7 +96,7 @@ func ValidatePipelineRunSignature(f *framework.Framework, namespace, appName, co
return false, nil
}

logging.Logger.Debug("Still waiting for pipeline run annotation for component %s in namespace %s", compName, namespace)
logging.Logger.Trace("Still waiting for pipeline run annotation for component %s in namespace %s", compName, namespace)

Check failure on line 99 in tests/load-tests/pkg/journey/handle_pipeline.go

View workflow job for this annotation

GitHub Actions / lint

unreachable: unreachable code (govet)
return false, nil
}, interval, timeout)

Expand Down
2 changes: 1 addition & 1 deletion tests/load-tests/pkg/journey/handle_test_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func ValidateTestPipelineRunCondition(f *framework.Framework, namespace, itsName
}
}

logging.Logger.Debug("Still waiting for test pipeline run for integration test pipeline %s in namespace %s", snapName, namespace)
logging.Logger.Trace("Still waiting for test pipeline run for integration test pipeline %s in namespace %s", snapName, namespace)
return false, nil
}, interval, timeout)

Expand Down

0 comments on commit ca6e9db

Please sign in to comment.