Skip to content

Commit

Permalink
HHH-8863 correct StatisticalLoggingSessionEventListener partial flush
Browse files Browse the repository at this point in the history
timing
  • Loading branch information
brmeyer committed Jan 14, 2014
1 parent de91d9b commit c574fe0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -266,7 +266,7 @@ public void partialFlushEnd(int numberOfEntities, int numberOfCollections) {
partialFlushCount++;
partialFlushEntityCount += numberOfEntities;
partialFlushCollectionCount += numberOfCollections;
partialFlushTime += ( System.nanoTime() - flushStart );
partialFlushTime += ( System.nanoTime() - partialFlushStart );
partialFlushStart = -1;
}

Expand Down

0 comments on commit c574fe0

Please sign in to comment.