We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 123f9b0 commit be89eceCopy full SHA for be89ece
src/main/java/de/rub/nds/tlsscanner/probe/TlsProbe.java
@@ -61,6 +61,8 @@ public ProbeResult call() {
61
long startTime = System.currentTimeMillis();
62
ProbeResult result = executeTest();
63
long stopTime = System.currentTimeMillis();
64
+ result.setStarttime(startTime);
65
+ result.setStoptime(stopTime);
66
LOGGER.info("Finished " + getProbeName() + " - Took " + (stopTime - startTime) / 1000 + "s");
67
return result;
68
}
0 commit comments