mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 18:31:00 +00:00
Include Sha / Branch in hook logs
This commit is contained in:
parent
ada0c19259
commit
a612493f58
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ func PostHook(c web.C, w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
// inserts the commit into the database
|
||||
if err := datastore.PostCommit(ctx, &commit); err != nil {
|
||||
log.Printf("Unable to persist commit. %s\n", err)
|
||||
log.Printf("Unable to persist commit %s@%s. %s\n", commit.Sha, commit.Branch, err)
|
||||
w.WriteHeader(http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue