src/main/java/net/curisit/securis/ReqGenerator.java
.. .. @@ -65,7 +65,7 @@ 65 65 public void save(RequestBean req, File file) throws SeCurisException { 66 66 byte[] json; 67 67 try { 68 - json = JsonUtils.toJSON(req, true).getBytes("utf-8");68 + json = JsonUtils.toPrettyJSON(req).getBytes("utf-8");69 69 Files.write(Paths.get(file.toURI()), json, StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING); 70 70 } catch (UnsupportedEncodingException e) { 71 71 LOG.error("Error creating json doc from request: " + req, e);