Skip to content

Commit 13968de

Browse files
committed
Remove extra log statement
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent eecaee0 commit 13968de

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

builder/publish.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ package builder
55

66
import (
77
"fmt"
8-
"log"
98
"os"
109
"strings"
1110

@@ -114,9 +113,8 @@ func getDockerBuildxCommand(build dockerBuild) (string, []string) {
114113

115114
args = append(args, "--tag", build.Image, ".")
116115

117-
log.Println(build.ExtraTags, len(build.ExtraTags))
118116
for _, t := range build.ExtraTags {
119-
log.Println("Do", t)
117+
120118
var tag string
121119
if i := strings.LastIndex(build.Image, ":"); i > -1 {
122120
tag = applyTag(i, build.Image, t)

0 commit comments

Comments
 (0)