Removed imput data from logs #130

Merged
bema merged 2 commits from bema/ref/remove_body into master 2023-03-24 09:12:34 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit bdc65bbff8 - Show all commits

View File

@@ -79,7 +79,7 @@ public class XPathController implements RestController {
}
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("time", duration);
@@ -108,7 +108,7 @@ public class XPathController implements RestController {
}
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("time", duration);

View File

@@ -67,7 +67,7 @@ public class XsdController implements RestController {
}
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("time", duration);