Write the code that will log the content of header X-Some-Header from the request. Note that the content should be converted to a string:
post("/header") {
val header = /* your code here */
call.application.environment.log.info("Requet header: $header")
}