X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FProfiler.php;h=240273bde3ce319594cbe4c6a4adc7de6dcada33;hb=05bd0d0b671ad509465fa6cddabc3c2a07c796a7;hp=1a5cd99922c6c47da90db8777a5d000c4f6ba76e;hpb=a24fca818d459092d04482564d90266fd46668e7;p=friendica.git 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"; } }