diff --git a/pkg/kapp/cmd/appgroup/deploy.go b/pkg/kapp/cmd/appgroup/deploy.go index 4749ed2a8..107b8bf45 100644 --- a/pkg/kapp/cmd/appgroup/deploy.go +++ b/pkg/kapp/cmd/appgroup/deploy.go @@ -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 { @@ -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 }