diff --git a/build.gradle.kts b/build.gradle.kts index c18e3f7..cef2a10 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,6 +33,7 @@ dependencies { //implementation("org.postgresql:postgresql:42.7.2") implementation("com.microsoft.sqlserver:mssql-jdbc:11.2.0.jre18") implementation("com.oracle.database.jdbc:ojdbc8:19.8.0.0") + implementation("io.ktor:ktor-server-call-logging:$ktor_version") implementation("io.ktor:ktor-server-cors:$ktor_version") implementation("org.jetbrains.exposed:exposed-jdbc:0.55.0") implementation("org.jetbrains.exposed:exposed-dao:$exposed_version") diff --git a/src/main/kotlin/eu/maiora/Application.kt b/src/main/kotlin/eu/maiora/Application.kt index 0b452d8..4e693fc 100644 --- a/src/main/kotlin/eu/maiora/Application.kt +++ b/src/main/kotlin/eu/maiora/Application.kt @@ -7,6 +7,7 @@ import io.ktor.server.application.* import io.ktor.server.config.* import io.ktor.server.engine.* import io.ktor.server.netty.* +import io.ktor.server.plugins.callloging.* import io.ktor.server.plugins.cors.routing.* import java.io.FileInputStream import java.util.* @@ -30,6 +31,7 @@ fun Application.module(configFile: Properties) { configureRouting() configureSerialization() + install(CallLogging) install(CORS){ anyHost() allowSameOrigin = true