Sean Abbott
06/24/2021, 2:10 PMfun main(args: Array<String>): Unit = io.ktor.server.netty.EngineMain.main(args)
fun Application.module(testing: Boolean = false) {
install(ContentNegotiation) {
json()
}
install(CallLogging)
registerAccountRoutes()
registerHealthRoutes()
}
The install ContentNegotiation works, but CallLogging isn't doing anything as far as I can tell.