]> git.mxchange.org Git - friendica.git/commitdiff
Added some description, changed logger call
authorMichael <heluecht@pirati.ca>
Wed, 27 Feb 2019 09:49:26 +0000 (09:49 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 27 Feb 2019 09:49:26 +0000 (09:49 +0000)
src/Core/Worker.php

index 111cd85f59f33cecf0dbbdaaae1d1e4f545c1272..ea8f6d24254cf24f63bb259e97236ee78004dcac 100644 (file)
@@ -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;
                        }