A barebone project to reproduce AccessLogHandler issue when using Jooby with Coroutines
gradle installDist./build/install/jooby-accesslogger-issue-example/bin/jooby-accesslogger-issue-exampledocker build -t example .docker run examplecurl -X GET --location "http://localhost:8080/status"Logs from AccessLogHandler miss the HTTP protocol and content length.
Expected:
17:32:17.206 INFO io.jooby.AccessLogHandler - 127.0.0.1 - - [14/Dec/2022:17:32:17 +0200] "GET /status HTTP/1.1" 200 2 1
Actual:
17:32:17.206 INFO io.jooby.AccessLogHandler - 127.0.0.1 - - [14/Dec/2022:17:32:17 +0200] "GET /status null" 200 - 1