| Currently, the slow query log using `System#currentTimeMillis`, that is not suitable for calculating time durations, as stated by the Java Doc:
Note that while the unit of time of the return value is a millisecond, the granularity of the value depends on the underlying operating system and may be larger. For example, many operating systems measure time in units of tens of milliseconds.
We should use `nanoTime` instead. |