Changes according to PR review. Requires rebase!

This commit is contained in:
Vlad Mihalcea 2020-02-25 18:29:43 +02:00 committed by Steve Ebersole
parent c7aaf31cbe
commit c76675f11a
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ public class SqlStatementLogger {
return;
}
if ( startTimeNanos <= 0 ) {
throw new IllegalArgumentException( "startTimeNanos should be greater than 0!" );
throw new IllegalArgumentException( "startTimeNanos [" + startTimeNanos + "] should be greater than 0!" );
}
long queryExecutionMillis = TimeUnit.NANOSECONDS.toMillis( System.nanoTime() - startTimeNanos );