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
|
// inserts the commit into the database
|
||||||
if err := datastore.PostCommit(ctx, &commit); err != nil {
|
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)
|
w.WriteHeader(http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue