From: Michael Date: Wed, 27 Feb 2019 09:49:26 +0000 (+0000) Subject: Added some description, changed logger call X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c3b12b63c8729a1cb844e40b490dc2d1168e9aac;p=friendica.git Added some description, changed logger call --- diff --git a/src/Core/Worker.php b/src/Core/Worker.php index 111cd85f59..ea8f6d2425 100644 --- a/src/Core/Worker.php +++ b/src/Core/Worker.php @@ -22,10 +22,10 @@ use Friendica\Util\Network; */ class Worker { - const STATE_STARTUP = 1; - const STATE_SHORT_LOOP = 2; - const STATE_REFETCH = 3; - const STATE_LONG_LOOP = 4; + const STATE_STARTUP = 1; // Worker is in startup. This takes most time. + const STATE_SHORT_LOOP = 2; // Worker is processing preassigned jobs, thus saving much time. + const STATE_REFETCH = 3; // Worker had refetched jobs in the execution loop. + const STATE_LONG_LOOP = 4; // Worker is processing the whole - long - loop. private static $up_start; private static $db_duration = 0; @@ -144,7 +144,7 @@ class Worker // Quit the worker once every cron interval if (time() > ($starttime + (Config::get('system', 'cron_interval') * 60))) { - Logger::log('Process lifetime reached, respawning.', Logger::DEBUG); + Logger::info('Process lifetime reached, respawning.'); self::spawnWorker(); return; }