From 52084ed954241039c7cd72896478a0b31001bd37 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Fri, 25 Sep 2020 21:44:35 +0100 Subject: [PATCH] Update WebFlux docs on logging with async appenders Closes gh-25547 --- src/docs/asciidoc/web/webflux.adoc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/docs/asciidoc/web/webflux.adoc b/src/docs/asciidoc/web/webflux.adoc index b2aa2af433..c6f1cfeb26 100644 --- a/src/docs/asciidoc/web/webflux.adoc +++ b/src/docs/asciidoc/web/webflux.adoc @@ -965,6 +965,17 @@ The following example shows how to do so for client-side requests: .build() ---- + +[[webflux-logging-appenders]] +==== Appenders + +Logging libraries such as SLF4J and Log4J 2 provide asynchronous loggers that avoid +blocking. While those have their own drawbacks such as potentially dropping messages +that could not be queued for logging, they are the best available option currently +or use in a reactive, non-blocking application. + + + [[webflux-codecs-custom]] ==== Custom codecs