Skip to content

Commit

Permalink
removed unnessary printf
Browse files Browse the repository at this point in the history
Signed-off-by: rjtch <[email protected]>
  • Loading branch information
rjtch committed Nov 1, 2023
1 parent d830cd8 commit 1dcf953
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions pkg/kapp/cmd/appgroup/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,6 @@ func (o *DeployOptions) Run() error {
return err
}

for _, v := range existingAppsInGroup {
fmt.Printf("EXISTING Projects found : %s\n", v.Name())
}

// Delete apps that no longer are present in directories
for _, app := range existingAppsInGroup {
for _, v := range updatedApps {
Expand Down Expand Up @@ -143,9 +139,6 @@ func (o *DeployOptions) appsToUpdate() ([]appGroupApp, error) {
}
applications = append(applications, app)
}
for _, v := range applications {
fmt.Printf("EXISTING Projects found : %s\n", v.Name)
}
return applications, nil
}

Expand Down

0 comments on commit 1dcf953

Please sign in to comment.