Skip to content

Commit 33aaaea

Browse files
committed
remove extra logging
1 parent d824691 commit 33aaaea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/devdeploy/deploy_service.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package devdeploy
33
import (
44
"compress/gzip"
55
"fmt"
6-
"github.com/aws/aws-sdk-go/service/applicationautoscaling"
76
"io/ioutil"
87
"log"
98
"os"
@@ -12,6 +11,8 @@ import (
1211
"strings"
1312
"time"
1413

14+
"github.com/aws/aws-sdk-go/service/applicationautoscaling"
15+
1516
"github.com/aws/aws-sdk-go/aws"
1617
"github.com/aws/aws-sdk-go/service/cloudwatchlogs"
1718
"github.com/aws/aws-sdk-go/service/ecs"
@@ -359,7 +360,6 @@ func DeployServiceToTargetEnv(log *log.Logger, cfg *Config, targetService *Proje
359360
log.Printf("\t\t\tNetworkMode: %s", *taskDefInput.NetworkMode)
360361
}
361362
log.Printf("\t\t\tTask Definitions: %d", len(taskDefInput.ContainerDefinitions))
362-
log.Printf("Task Definitions: %v", taskDefInput.ContainerDefinitions)
363363

364364
// If memory or cpu for the task is not set, need to compute from container definitions.
365365
if (taskDefInput.Cpu == nil || *taskDefInput.Cpu == "") || (taskDefInput.Memory == nil || *taskDefInput.Memory == "") {

0 commit comments

Comments
 (0)