We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7a008c commit 58e6f2fCopy full SHA for 58e6f2f
src/Connection.php
@@ -657,7 +657,7 @@ protected function execute(array $prepared): bool
657
$start = microtime(true);
658
$result = $prepared['statement']->execute();
659
$executionTime = microtime(true) - $start;
660
- $sqlLog['time'] = (int)($executionTime * 1000); // millisecond
+ $sqlLog['time'] = round($executionTime * 1000, 2); // millisecond
661
662
$this->logs[] = $sqlLog;
663
0 commit comments