Reverting accidentally commited test

This commit is contained in:
Michael 2020-07-16 04:45:12 +00:00
parent b8682190de
commit c352af8eda
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ class Profiler implements ContainerInterface
$output .= "\nDatabase Read:\n";
foreach ($this->callstack["database"] as $func => $time) {
$time = round($time, 3);
if ($time > 0.001) {
if ($time > 0) {
$output .= $func . ": " . $time . "\n";
}
}