is there a way to consume request body 2 times? or...
# ktor
m
is there a way to consume request body 2 times? or should I consume it as a string (to get whole request and log it for debugging) and then manually deserialize it into an object?
e
Use a logging interceptor?
a
You can try to use the DoubleReceive plugin.