Update WebFlux docs on logging with async appenders

Closes gh-25547
This commit is contained in:
Rossen Stoyanchev 2020-09-25 21:44:35 +01:00
parent b9ef5416b9
commit 52084ed954
1 changed files with 11 additions and 0 deletions

View File

@ -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