From 8939a2550273d16005e757e0dde134bd9538dc7b Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 20 Jan 2017 22:05:50 +0000 Subject: [PATCH] Better number format --- include/poller.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/poller.php b/include/poller.php index 3a83770ce..dc7f70a51 100644 --- a/include/poller.php +++ b/include/poller.php @@ -184,7 +184,7 @@ function poller_execute($queue) { sleep($cooldown); } - $duration = (float)round(microtime(true)-$stamp, 3); + $duration = number_format(microtime(true) - $stamp, 3); logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds."); @@ -192,12 +192,12 @@ function poller_execute($queue) { $duration = microtime(true)-$a->performance["start"]; logger("ID ".$queue["id"].": ".$funcname.": ".sprintf("DB: %s/%s, Net: %s, I/O: %s, Other: %s, Total: %s", - round($a->performance["database"] - $a->performance["database_write"], 2), - round($a->performance["database_write"], 2), - round($a->performance["network"], 2), - round($a->performance["file"], 2), - round($duration - ($a->performance["database"] + $a->performance["network"] + $a->performance["file"]), 2), - round($duration, 2)), + 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); }