mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-23 09:49:01 +00:00
This commit ensures that all errors handled by the `DefaultErrorWebExceptionHandler` (Spring WebFlux error convetion support) logs an error with request information and exception stacktrace. This is limited to errors that result in an HTTP 5xx error. Exceptions that extend `ResponseStatusException` and set a non-5xx status will not be logged. Closes gh-10904