mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 09:51:21 +00:00
fix: Improve error logs.
This commit is contained in:
parent
8e532e2701
commit
6149bca5ab
|
@ -18,6 +18,6 @@ func RecordFactory(hookname string) (Record, error) {
|
|||
case "docker":
|
||||
return new(DockerRecord), nil
|
||||
default:
|
||||
return nil, errors.New("Unknown hookname.")
|
||||
return nil, errors.New("Unknown hookname: " + hookname)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -96,17 +96,19 @@ func Handler(w http.ResponseWriter, r *http.Request) {
|
|||
context.Hook = params["hookname"]
|
||||
context.Action = params["action"]
|
||||
|
||||
log.Println("Hook name: ", context.Hook)
|
||||
|
||||
var record, err = hook.RecordFactory(context.Hook)
|
||||
if err != nil {
|
||||
log.Println(err.Error())
|
||||
http.Error(w, err.Error(), http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
log.Println("Using hook: ", context.Hook)
|
||||
|
||||
decoder := json.NewDecoder(r.Body)
|
||||
err = decoder.Decode(&record)
|
||||
if err != nil {
|
||||
log.Println(err.Error())
|
||||
http.Error(w, err.Error(), http.StatusBadRequest)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user