Join Slack
Powered by
How can I observe the form data of a request for d...
# ktor
e
Emre
07/16/2024, 3:18 PM
How can I observe the form data of a request for debugging purposes?
a
Aleksei Tirman [JB]
07/16/2024, 3:26 PM
You can use the
Logging plugin
to observe the request body.
🙏 1
e
Emre
07/16/2024, 8:57 PM
For others' reference, I used this plugin as follows:
Copy code
HttpClient(CIO) { install(Logging) { level=LogLevel.BODY } }
Open in Slack
Previous
Next