From: Michael Date: Thu, 16 Jul 2020 04:45:12 +0000 (+0000) Subject: Reverting accidentally commited test X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c352af8edae5a17af4093ee8dd7da3fb2eb5f9d7;p=friendica.git Reverting accidentally commited test --- diff --git a/src/Util/Profiler.php b/src/Util/Profiler.php index 1a5cd99922..240273bde3 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"; } }