Hi guys, how can I output http request to console?...
# ktor
x
Hi guys, how can I output http request to console? Is there a convenient way to do it?
c
install(CallLogging)
? or something more specific than simply URI ?
x
Thanks for reply, I tried this one but it's too simple, I want to intercept send/receive text. I tried to intercept pipelines and get headers and received text successfully, but it seems sending text is not such easy to do, finally I just got some symbols from ApplicationSendPipeline
Ah, I figured it out, I use compressed result to decode so I can just get a lot of meaningless symbol!😁