Skip to content

Commit ee3409a

Browse files
author
Aaron Schlesinger
committed
fix(build.go): add debug output for custom buildpack URL
1 parent e00994d commit ee3409a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

pkg/gitreceive/build.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ func build(conf *Config, builderKey, gitSha string) error {
9898
var buildPackURL string
9999
if buildPackURLInterface, ok := appConf.Values["BUILDPACK_URL"]; ok {
100100
if bpStr, ok := buildPackURLInterface.(string); ok {
101+
log.Debug("found custom buildpack URL %s", bpStr)
101102
buildPackURL = bpStr
102103
}
103104
}

0 commit comments

Comments
 (0)