Skip to content

Commit

Permalink
Fixed bug in ERXStatisticsStore - it was never logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrook authored and darkv committed Nov 23, 2012
1 parent ec0a0ac commit 1758a8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ protected void endTimer(WOContext aContext, String aString) {
_requestThreads.remove(Thread.currentThread());
}
long currentTime = System.currentTimeMillis();
if(currentTime - _lastLog > 10000) {
if(currentTime - _lastLog < 10000) {
return;
}
_lastLog = currentTime;
Expand Down

0 comments on commit 1758a8b

Please sign in to comment.