Skip to content
Snippets Groups Projects
Commit f3a733e2 authored by brinn's avatar brinn
Browse files

fix: bug introduced in r2857 (wrong number of arguments in error message)

SVN: 2864
parent 45b6e515
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ public final class LogMonitoringAppender extends AppenderSkeleton ...@@ -132,7 +132,7 @@ public final class LogMonitoringAppender extends AppenderSkeleton
public void verifyLogHappendNTimes(int n) public void verifyLogHappendNTimes(int n)
{ {
assert logCount == n : String.format( assert logCount == n : String.format(
"Log snippet '%s' should have found %d times, but has been found %d times: %s", messagePart, n, "Log snippet '%s' should have found %d times, but has been found %d times.", messagePart, n,
logCount); logCount);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment