I have a question about requests tracing. The wiza...
# ktor
c
I have a question about requests tracing. The wizard let me with this call inside the
routing
section:
Copy code
trace { application.log.trace(it.buildText()) }
So far, so good. But let say my routing section starts with several static routes that I don't want logged at all. Moving the
trace
section down below the static routes sections doesn't seem to change anything, they are still logged. Moving the
trace
section inside a route doesn't seem to be allowed (
trace
is not recognized inside a
Routing
context). Is there anyway to tune what is traced or not?