We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecafa58 commit c125ffaCopy full SHA for c125ffa
pkg/cmd/connector/cluster/create/create.go
@@ -3,6 +3,7 @@ package create
3
import (
4
"github.com/redhat-developer/app-services-cli/pkg/core/cmdutil/flagutil"
5
"github.com/redhat-developer/app-services-cli/pkg/core/ioutil/dump"
6
+ "github.com/redhat-developer/app-services-cli/pkg/core/localize"
7
8
"github.com/redhat-developer/app-services-cli/pkg/shared/connection"
9
"github.com/redhat-developer/app-services-cli/pkg/shared/factory"
@@ -79,7 +80,7 @@ func runCreate(opts *options) error {
79
80
return err
81
}
82
- f.Logger.Info(f.Localizer.MustLocalize("connector.cluster.create.info.success"))
83
+ f.Logger.Info(f.Localizer.MustLocalize("connector.cluster.create.info.success", localize.NewEntry("NAME", response.Name)))
84
85
return nil
86
0 commit comments