How can I observe the form data of a request for d...
# ktor
e
How can I observe the form data of a request for debugging purposes?
a
You can use the Logging plugin to observe the request body.
🙏 1
e
For others' reference, I used this plugin as follows:
Copy code
HttpClient(CIO) {
    install(Logging) {
        level=LogLevel.BODY
    }
}