Skip to content

Commit 1c0f820

Browse files
committed
Remove debugging
1 parent a1e9937 commit 1c0f820

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

instance/plan.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ type xCloudServerCreateParams struct {
5656

5757
//func ProcessPlan(plan *map[string]interface{}) error {
5858
func (ci *Client) ProcessPlan(plan *Plan) error {
59-
fmt.Printf("%#v\n", plan)
6059

6160
if plan.Cloud != nil {
6261
if err := ci.processPlanCloud(plan.Cloud); err != nil {
@@ -92,13 +91,10 @@ func (ci *Client) processPlanCloudServer(server *PlanCloudServer) error {
9291
}
9392

9493
func (ci *Client) processPlanCloudServerCreate(params *CloudServerCreateParams) error {
95-
fmt.Println(" cloud server create", params.Template, params.Hostname)
96-
fmt.Printf("%#v\n", params)
9794

9895
uniqId := ci.CloudServerCreate(params)
9996
fmt.Printf(
10097
"Cloud server with uniq_id [%s] creating. Check status with 'cloud server status --uniq_id %s'\n",
10198
uniqId, uniqId)
102-
10399
return nil
104100
}

0 commit comments

Comments
 (0)