Done for XSD and XPath

This commit is contained in:
2023-03-23 12:03:16 +01:00
parent 71f9ae9553
commit bdc65bbff8
2 changed files with 3 additions and 3 deletions

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);