has anyone figure out a nice way to read the reque...
# ktor
t
has anyone figure out a nice way to read the request body more than once in ktor - for example, for logging purposes?
e
you can intercept a request and replace incoming content with a container like this https://github.com/ktorio/ktor/blob/master/ktor-client/ktor-client-core/src/io/ktor/client/features/HttpPlainText.kt#L41
t
@enleur thanks for that - I’ll give that a go 🙂