Skip to content

Commit

Permalink
Updated 404 logging
Browse files Browse the repository at this point in the history
  • Loading branch information
sksamuel committed Apr 29, 2024
1 parent 1f26cb4 commit a2017e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a2017e5

Please sign in to comment.