private void addRequestQuery(BufferedRequestWrapper httpRequest, List<Loggable> loggables) {
   loggables.add(
       createLoggable(
           WebKeys.QUERY,
           StringUtils.replaceEach(
               httpRequest.getQueryString(),
               new String[] {StringPool.QUESTIONMARK, StringPool.AMPERSAND},
               new String[] {StringPool.BLANK, StringPool.UDERSCORE})));
 }