]> git.mxchange.org Git - friendica.git/commitdiff
The log text is now shorter
authorMichael <heluecht@pirati.ca>
Wed, 27 Feb 2019 08:41:45 +0000 (08:41 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 27 Feb 2019 08:41:45 +0000 (08:41 +0000)
src/Core/Worker.php

index 1aa33917071d568712289ba16cda06ba3f92e2ae..3c1f08fdaecbd47c2e70dffa5e4002b6e53a363b 100644 (file)
@@ -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;