Hi, I am writing a Spring Boot Kotlin micro service. I intend to use spring reactive stack along with Kotlin Flows/Coroutines.
I want to log all incoming http request and response body in my micro service. What would be an appropriate approach to do that?
Is writing a Filter which intercepts the request/response and reads the stream and then log it is safe and recommended?
What other options I can explore? Thanks in advance