Add request logging to panic recovery #63
@ -30,11 +30,15 @@ func (rl *rushlink) RootURL() *url.URL {
|
||||
|
||||
func (rl *rushlink) recoveryMiddleware(next http.Handler) http.Handler {
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
logRequestInfo := func() {
|
||||
log.Printf("in request: %v - %v %q %v", r.RemoteAddr, r.Method, r.RequestURI, r.Proto)
|
||||
}
|
||||
defer func() {
|
||||
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
w.WriteHeader(500)
|
||||
log.Printf("error: panic while recovering from another panic: %v\n", err)
|
||||
mrngm
commented
`log.Printf` already registers the timestamp. What's the use of a second timestamp here?
|
||||
logRequestInfo()
|
||||
mrngm
commented
Instead of Instead of `'%s'`, you may use `%q`, which automatically quotes the supplied string.
|
||||
debug.PrintStack()
|
||||
fmt.Fprintf(w, "internal server error: %v\n", err)
|
||||
}
|
||||
@ -43,6 +47,7 @@ func (rl *rushlink) recoveryMiddleware(next http.Handler) http.Handler {
|
||||
if err := recover(); err != nil {
|
||||
w.WriteHeader(500)
|
||||
log.Printf("error: %v\n", err)
|
||||
logRequestInfo()
|
||||
debug.PrintStack()
|
||||
rl.renderInternalServerError(w, r, err)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user
I don't see a reason why the source port needs to be chopped off. Besides, the
net/http
server guarantees (by means of documentation) thathttp.Request.RemoteAddr
is filled usingIP:port
, so this check should not be necessary.