Removed imput data from logs #130
@@ -79,7 +79,7 @@ public class XPathController implements RestController {
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                duration = System.currentTimeMillis() - timeStart;
 | 
					                duration = System.currentTimeMillis() - timeStart;
 | 
				
			||||||
                this.logger.info("Request" + body + " processed in " + duration + " ms.");
 | 
					                this.logger.info("Request processed in " + duration + " ms.");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                responseJson.addProperty("processor", "Saxon " + Saxon.getVersion() + " " + version + " over s9api");
 | 
					                responseJson.addProperty("processor", "Saxon " + Saxon.getVersion() + " " + version + " over s9api");
 | 
				
			||||||
                responseJson.addProperty("time", duration);
 | 
					                responseJson.addProperty("time", duration);
 | 
				
			||||||
@@ -108,7 +108,7 @@ public class XPathController implements RestController {
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                duration = System.currentTimeMillis() - timeStart;
 | 
					                duration = System.currentTimeMillis() - timeStart;
 | 
				
			||||||
                this.logger.info("Request: " + body + " processed in " + duration + " ms.");
 | 
					                this.logger.info("Request processed in " + duration + " ms.");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                responseJson.addProperty("processor", Xalan.getVersion());
 | 
					                responseJson.addProperty("processor", Xalan.getVersion());
 | 
				
			||||||
                responseJson.addProperty("time", duration);
 | 
					                responseJson.addProperty("time", duration);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -67,7 +67,7 @@ public class XsdController implements RestController {
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        long duration = System.currentTimeMillis() - timeStart;
 | 
					        long duration = System.currentTimeMillis() - timeStart;
 | 
				
			||||||
        this.logger.info("Request: " + body + " processed in " + duration + " ms.");
 | 
					        this.logger.info("Request processed in " + duration + " ms.");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        responseJson.addProperty("processor", Xalan.getVersion());
 | 
					        responseJson.addProperty("processor", Xalan.getVersion());
 | 
				
			||||||
        responseJson.addProperty("time", duration);
 | 
					        responseJson.addProperty("time", duration);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user