Working on #36103 showed that there are some inconsistencies in how we log the Servlet WebServer's context path: - Jetty logs `'/'` by default - Tomcat logs `''` by default - Undertow logs nothing by default There are also some similar inconsistencies on the reactive side where there is no (configurable) context path: - Jetty logs `'/'` - Tomcat logs `''` - Undertow logs nothing - Netty logs nothing We should try to make things as consistent as possible, removing as many of the optional regex groups as possible from the tests added in #36103.