How can we log a specific header from CallLogging ...
# ktor
h
How can we log a specific header from CallLogging feature ?
c
Copy code
install(CallLogging) {
    format { call ->
        any message format your need
    }
}
Alternatively you can always intercept all requests and log everything you need at any point