Skip to content

Commit

Permalink
query time in milliseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
ilvalerione committed May 6, 2019
1 parent e5001af commit 22c49b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LogEngineServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ protected function formatQuery($sql, array $bindings, $time, $connection)
foreach ($bindings as $index => $binding) {
$data["binding {$index}"] = $binding;
}
$data['time'] = "{$time}ms";
$data['time'] = $time; // milliseconds
$data['connection'] = $connection;
return $data;
}
Expand Down

0 comments on commit 22c49b4

Please sign in to comment.