Is there a ‘request-trace’ plugin for Ktor? Someth...
# ktor
k
Is there a ‘request-trace’ plugin for Ktor? Something that I could use to log out the incoming (and outgoing) HTTP details. I know there’s a CallLogging plugin but that doesn’t log the headers (or if it does I don’t see how to turn it on) If not, would it be of interest?
l
CallLogging
has a
format
param where you have access to the
ApplicationCall
With that you can add headers to the log if you want
k
Ah, thanks, I’ll take a look