1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-07 13:31:37 +02:00

fix: add debug log for changelog file load

refs #2601
This commit is contained in:
Carlos A Becker 2021-10-26 23:05:25 -03:00
parent 5de2a8bb86
commit 48d774970c
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -91,6 +91,7 @@ func loadFromFile(file string) (string, error) {
if err != nil {
return "", err
}
log.WithField("file", file).Debugf("read %d bytes", len(bts))
return string(bts), nil
}