Skip to content

Commit

Permalink
fix incorrect Infof log
Browse files Browse the repository at this point in the history
  • Loading branch information
sambukowski committed Apr 2, 2024
1 parent 449c390 commit 90a420c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/devtools/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ func downloadAndUnpack(url string, packageName string, placePath string) {
fmt.Printf("%s already exists. Skipping download.\n", packageName)
return
}
log.Info("Downloading: (%s, %s)\n", packageName, url)
log.Infof("Downloading: (%s, %s)\n", packageName, url)

// Download the file
dest := filepath.Join(placePath, packageName+".tar.gz")
Expand Down

0 comments on commit 90a420c

Please sign in to comment.