diff --git a/cohort-vertx/src/main/kotlin/com/sksamuel/cohort/vertx/HealthVerticle.kt b/cohort-vertx/src/main/kotlin/com/sksamuel/cohort/vertx/HealthVerticle.kt index 6cfb5a8..a268a0d 100644 --- a/cohort-vertx/src/main/kotlin/com/sksamuel/cohort/vertx/HealthVerticle.kt +++ b/cohort-vertx/src/main/kotlin/com/sksamuel/cohort/vertx/HealthVerticle.kt @@ -50,7 +50,7 @@ class HealthVerticle( override suspend fun start() { val router = Router.router(vertx) - .errorHandler(404) { it.end("Could not find path ${it.request().path()}") } + .errorHandler(404) { it.end("Could not find request ${it.request().path()} ${it.request()}") } val server = vertx.createHttpServer(options) .requestHandler(router)