(SocketWrapperBase<?> socketWrapper)
| 1116 | |
| 1117 | |
| 1118 | @Override |
| 1119 | protected final void logAccess(SocketWrapperBase<?> socketWrapper) throws IOException { |
| 1120 | // Set the socket wrapper so the access log can read the socket related |
| 1121 | // information (e.g. client IP) |
| 1122 | setSocketWrapper(socketWrapper); |
| 1123 | // Set up the minimal request information |
| 1124 | request.markStartTime(); |
| 1125 | // Set up the minimal response information |
| 1126 | response.setStatus(400); |
| 1127 | response.setError(); |
| 1128 | getAdapter().log(request, response, 0); |
| 1129 | } |
| 1130 | } |
nothing calls this directly
no test coverage detected