]> git.mxchange.org Git - friendica.git/commitdiff
Rearranged the logging
authorMichael <heluecht@pirati.ca>
Sat, 21 Jan 2017 06:16:15 +0000 (06:16 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 21 Jan 2017 06:16:15 +0000 (06:16 +0000)
include/poller.php

index 0c5a4ff628c5ec3f53f016527eeb85c0db5d2b95..391c2e9d23cbddd602bd7cf5c5cae94d400b1479 100644 (file)
@@ -188,17 +188,8 @@ function poller_execute($queue) {
                if (Config::get("system", "profiler")) {
                        $duration = microtime(true)-$a->performance["start"];
 
-                       logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s",
-                               number_format($a->performance["database"] - $a->performance["database_write"], 2),
-                               number_format($a->performance["database_write"], 2),
-                               number_format($a->performance["network"], 2),
-                               number_format($a->performance["file"], 2),
-                               number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2),
-                               number_format($duration, 2)),
-                               LOGGER_DEBUG);
-
                        if (Config::get("rendertime", "callstack")) {
-                               $o = "ID ".$queue["id"].": ".$funcname.": Database Read:\n";
+                               $o = "\nDatabase Read:\n";
                                foreach ($a->callstack["database"] AS $func => $time) {
                                        $time = round($time, 3);
                                        if ($time > 0)
@@ -217,8 +208,18 @@ function poller_execute($queue) {
                                        if ($time > 0)
                                                $o .= $func.": ".$time."\n";
                                }
-                               logger($o, LOGGER_DEBUG);
+                       } else {
+                               $o = '';
                        }
+
+                       logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s".$o,
+                               number_format($a->performance["database"] - $a->performance["database_write"], 2),
+                               number_format($a->performance["database_write"], 2),
+                               number_format($a->performance["network"], 2),
+                               number_format($a->performance["file"], 2),
+                               number_format($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2),
+                               number_format($duration, 2)),
+                               LOGGER_DEBUG);
                }
 
                if ($cooldown > 0) {