Restore a removed logging statement

This commit is contained in:
John Lees-Miller 2016-06-03 16:45:16 +01:00
parent 7cb82f3c18
commit 4fb9cbdf19

View file

@ -35,6 +35,7 @@ public class FileHandler extends ResourceHandler {
HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException {
if (!"GET".equals(baseRequest.getMethod())) return;
LOG.info("GET <- {}", baseRequest.getRequestURI());
Matcher docKeyMatcher = DOC_KEY_PATTERN.matcher(target);
if (!docKeyMatcher.matches()) return;