Include Sha / Branch in hook logs

This commit is contained in:
Brad Rydzewski 2015-07-22 13:12:37 -07:00
parent ada0c19259
commit a612493f58

View file

@ -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
}