Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion acceptor.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -667,10 +667,19 @@ handler."
(when *headers-sent*
(setq *finish-processing-socket* t))
(throw 'handler-done
(values nil cond (get-backtrace))))))
(values nil cond (get-backtrace-for-acceptor *acceptor*))))))
(with-debugger
(acceptor-dispatch-request *acceptor* *request*))))

(defgeneric get-backtrace-for-acceptor (acceptor)
(:documentation
"A method that allows for overriding how the stack trace is
displayed or logged. The default stacktrace might be verbose on some
Lisps, which might write sensitive information, such as passwords."))

(defmethod get-backtrace-for-acceptor (acceptor)
(get-backtrace))

(defgeneric acceptor-status-message (acceptor http-status-code &key &allow-other-keys)
(:documentation
"This function is called after the request's handler has been
Expand Down