Skip to content

Commit

Permalink
More logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tilln committed Apr 8, 2024
1 parent de53a37 commit 40f7a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/nz/co/breakpoint/jmeter/TestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public synchronized void process(SampleResult result) {
if (metric != null) {
final String label = result.getSampleLabel();
if (labelPattern.matcher(label).matches()) {
log.trace("\"{}\" including sample \"{}\"", name, label);
log.trace("\"{}\" including sample \"{}\" {}ms", name, label, result.getTime());
metric.increment(result.getTime(), result.isSuccessful());
}
}
Expand Down

0 comments on commit 40f7a22

Please sign in to comment.