Skip to content

Commit

Permalink
fix: add a debug log on git config
Browse files Browse the repository at this point in the history
refs #2537

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
  • Loading branch information
caarlos0 committed Sep 28, 2021
1 parent 0c51988 commit c7580bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/git/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func ExtractRepoFromConfig() (result config.Repo, err error) {
if err != nil {
return result, fmt.Errorf("no remote configured to list refs from")
}
log.WithField("rawurl", string(out)).Debugf("got git url")
log.WithField("rawurl", out).Debugf("got git url")
return ExtractRepoFromURL(out)
}

Expand Down

0 comments on commit c7580bf

Please sign in to comment.