]> git.mxchange.org Git - friendica.git/commitdiff
Reverting accidentally commited test
authorMichael <heluecht@pirati.ca>
Thu, 16 Jul 2020 04:45:12 +0000 (04:45 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 16 Jul 2020 04:45:12 +0000 (04:45 +0000)
src/Util/Profiler.php

index 1a5cd99922c6c47da90db8777a5d000c4f6ba76e..240273bde3ce319594cbe4c6a4adc7de6dcada33 100644 (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";
                                }
                        }