From c352af8edae5a17af4093ee8dd7da3fb2eb5f9d7 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 16 Jul 2020 04:45:12 +0000 Subject: [PATCH] Reverting accidentally commited test --- src/Util/Profiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Util/Profiler.php b/src/Util/Profiler.php index 1a5cd9992..240273bde 100644 --- a/src/Util/Profiler.php +++ b/src/Util/Profiler.php @@ -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"; } }