From 0ee1ea5f29e92bd1a472e575163d087228f17500 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 27 Feb 2019 08:41:45 +0000 Subject: [PATCH] The log text is now shorter --- src/Core/Worker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Worker.php b/src/Core/Worker.php index 1aa3391707..3c1f08fdae 100644 --- a/src/Core/Worker.php +++ b/src/Core/Worker.php @@ -416,7 +416,7 @@ class Worker $rest = round(max(0, $up_duration - (self::$db_duration + self::$lock_duration)), 2); $exec = round($duration, 2); - $logger->info('Performance log.', ['state' => self::$state, 'count' => $dbcount, 'stat' => $dbstat, 'write' => $dbwrite, 'lock' => $dblock, 'total' => $dbtotal, 'rest' => $rest, 'exec' => $exec]); + $logger->info('Performance:', ['state' => self::$state, 'count' => $dbcount, 'stat' => $dbstat, 'write' => $dbwrite, 'lock' => $dblock, 'total' => $dbtotal, 'rest' => $rest, 'exec' => $exec]); self::$up_start = microtime(true); self::$db_duration = 0;