]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Logger/WorkerLogger.php
Merge pull request #8271 from MrPetovan/bug/8229-frio-mobile-back-to-top
[friendica.git] / src / Util / Logger / WorkerLogger.php
index be7f82a9f4f4207e761247ef6ee2196fc5a2adfe..fb63ce1024f9b86c911bc9b25a1cf81bec99337f 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Util\Logger;
 
@@ -31,13 +50,23 @@ class WorkerLogger implements LoggerInterface
         * @param string $functionName The current function name of the worker
         * @param int $idLength The length of the generated worker ID
         */
-       public function __construct(LoggerInterface $logger, $functionName, $idLength = 7)
+       public function __construct(LoggerInterface $logger, $functionName = '', $idLength = 7)
        {
                $this->logger = $logger;
                $this->functionName = $functionName;
                $this->workerId = Strings::getRandomHex($idLength);
        }
 
+       /**
+        * Sets the function name for additional logging
+        *
+        * @param string $functionName
+        */
+       public function setFunctionName(string $functionName)
+       {
+               $this->functionName = $functionName;
+       }
+
        /**
         * Adds the worker context for each log entry
         *