mirror of https://github.com/portainer/portainer
26 lines
505 B
Go
26 lines
505 B
Go
package middlewares
|
|
|
|
import (
|
|
"net/http"
|
|
"runtime/debug"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func WithPanicLogger(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
|
|
defer func() {
|
|
if err := recover(); err != nil {
|
|
log.Error().
|
|
Any("panic", err).
|
|
Str("method", req.Method).
|
|
Str("url", req.URL.String()).
|
|
Str("stack", string(debug.Stack())).
|
|
Msg("Panic in request handler")
|
|
}
|
|
}()
|
|
|
|
next.ServeHTTP(w, req)
|
|
})
|
|
}
|