Skip to content

Commit

Permalink
Merge pull request #214 from vmware-tanzu/213-cli-logging-library-error
Browse files Browse the repository at this point in the history
213 Remove import of closed source logging library
  • Loading branch information
xmen4xp authored Sep 8, 2023
2 parents c90e64c + 965d1a4 commit 60c8916
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cli/pkg/servicemesh/runtime/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
"gitlab.eng.vmware.com/nsx-allspark_users/nexus-sdk/cli.git/pkg/log"
"gitlab.eng.vmware.com/nsx-allspark_users/nexus-sdk/cli.git/pkg/servicemesh/prereq"
"gitlab.eng.vmware.com/nsx-allspark_users/nexus-sdk/cli.git/pkg/utils"
"gitlab.eng.vmware.com/nsx-allspark_users/nexus/golang/pkg/logging"
)

func Uninstall(cmd *cobra.Command, args []string) error {
Expand Down Expand Up @@ -111,6 +110,6 @@ func init() {
"r", common.ImageRegistry, "Registry where helm-chart is located")
err := cobra.MarkFlagRequired(UninstallCmd.Flags(), "namespace")
if err != nil {
logging.Debugf("Runtime uninstall err: %v", err)
log.Debugf("Runtime uninstall err: %v", err)
}
}

0 comments on commit 60c8916

Please sign in to comment.