Skip to content

Commit

Permalink
fix(STONEINTG-574): fix log message about number of integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: Sonam Maheshwari <[email protected]>
  • Loading branch information
sonam1412 committed Sep 15, 2023
1 parent fd8631a commit a67ea0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion controllers/snapshot/snapshot_adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ func (a *Adapter) EnsureAllIntegrationTestPipelinesExist() (controller.Operation
}

if integrationTestScenarios != nil {
a.logger.Info("Found IntegrationTestScenarios for application",
a.logger.Info(
fmt.Sprintf("Found %d IntegrationTestScenarios for application", len(*integrationTestScenarios)),
"Application.Name", a.application.Name,
"IntegrationTestScenarios", len(*integrationTestScenarios))
for _, integrationTestScenario := range *integrationTestScenarios {
Expand Down

0 comments on commit a67ea0e

Please sign in to comment.