these logs are annoying

This commit is contained in:
Ted Unangst 2023-03-15 15:43:57 -04:00
parent 858ce2f291
commit 2eb5b9d3c0
1 changed files with 0 additions and 4 deletions

4
web.go
View File

@ -381,8 +381,6 @@ func inbox(w http.ResponseWriter, r *http.Request) {
ilog.Printf("inbox message failed signature for %s from %s: %s", keyname, r.Header.Get("X-Forwarded-For"), err)
if keyname != "" {
ilog.Printf("bad signature from %s", keyname)
ilog.Writer().Write(payload)
ilog.Writer().Write([]byte{'\n'})
}
http.Error(w, "what did you call me?", http.StatusTeapot)
return
@ -487,8 +485,6 @@ func serverinbox(w http.ResponseWriter, r *http.Request) {
ilog.Printf("inbox message failed signature for %s from %s: %s", keyname, r.Header.Get("X-Forwarded-For"), err)
if keyname != "" {
ilog.Printf("bad signature from %s", keyname)
ilog.Writer().Write(payload)
ilog.Writer().Write([]byte{'\n'})
}
http.Error(w, "what did you call me?", http.StatusTeapot)
return