]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Logger.php
Merge pull request #11015 from MrPetovan/task/10979-frio-time-tooltip
[friendica.git] / src / Core / Logger.php
index fe39d3feb2c43c6ff548e46b010a8897c07c7f87..4c9bab76b4993d6b50b36cde2b00d3e2b776cd63 100644 (file)
 <?php
 /**
- * @file src/Core/Logger.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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\Core;
 
-use Friendica\BaseObject;
-use Friendica\Network\HTTPException\InternalServerErrorException;
-use Friendica\Util\LoggerFactory;
+use Friendica\DI;
+use Friendica\Core\Logger\Type\WorkerLogger;
 use Psr\Log\LoggerInterface;
 use Psr\Log\LogLevel;
 
 /**
- * @brief Logger functions
+ * Logger functions
  */
-class Logger extends BaseObject
+class Logger
 {
        /**
-        * @deprecated 2019.03 use Logger::error() instead
-        * @see Logger::error()
-        */
-       const WARNING = 0;
-       /**
-        * @deprecated 2019.03 use Logger::warning() instead
-        * @see Logger::warning()
-        */
-       const INFO = 1;
-       /**
-        * @deprecated 2019.03 use Logger::notice() instead
-        * @see Logger::notice()
-        */
-       const TRACE = 2;
-       /**
-        * @deprecated 2019.03 use Logger::info() instead
-        * @see Logger::info()
-        */
-       const DEBUG = 3;
-       /**
-        * @deprecated 2019.03 use Logger::debug() instead
-        * @see Logger::debug()
-        */
-       const DATA = 4;
-       /**
-        * @deprecated 2019.03 use Logger::debug() instead
-        * @see Logger::debug()
+        * @var LoggerInterface The default Logger type
         */
-       const ALL = 5;
-
+       const TYPE_LOGGER = LoggerInterface::class;
        /**
-        * @var array the legacy loglevels
-        * @deprecated 2019.03 use PSR-3 loglevels
-        * @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#5-psrlogloglevel
-        *
+        * @var WorkerLogger A specific worker logger type, which can be anabled
         */
-       public static $levels = [
-               self::WARNING => 'Warning',
-               self::INFO => 'Info',
-               self::TRACE => 'Trace',
-               self::DEBUG => 'Debug',
-               self::DATA => 'Data',
-               self::ALL => 'All',
-       ];
-
+       const TYPE_WORKER = WorkerLogger::class;
        /**
-        * @var LoggerInterface A PSR-3 compliant logger instance
+        * @var LoggerInterface The current logger type
         */
-       private static $logger;
+       private static $type = self::TYPE_LOGGER;
 
        /**
-        * @var LoggerInterface A PSR-3 compliant logger instance for developing only
+        * @return LoggerInterface
         */
-       private static $devLogger;
+       private static function getWorker()
+       {
+               if (self::$type === self::TYPE_LOGGER) {
+                       return DI::logger();
+               } else {
+                       return DI::workerLogger();
+               }
+       }
 
        /**
-        * Sets the default logging handler for Friendica.
-        * @todo Can be combined with other handlers too if necessary, could be configurable.
+        * Enable additional logging for worker usage
         *
-        * @param LoggerInterface $logger The Logger instance of this Application
+        * @param string $functionName The worker function, which got called
         *
-        * @throws InternalServerErrorException if the logger factory is incompatible to this logger
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function setLogger($logger)
+       public static function enableWorker(string $functionName)
        {
-               $debugging = Config::get('system', 'debugging');
-               $logfile = Config::get('system', 'logfile');
-               $loglevel = intval(Config::get('system', 'loglevel'));
-
-               if (!$debugging || !$logfile) {
-                       return;
-               }
-
-               $level = self::mapPSR3Level($loglevel);
-               LoggerFactory::addStreamHandler($logger, $logfile, $level);
-
-               self::$logger = $logger;
-
-               $logfile = Config::get('system', 'dlogfile');
-
-               if (!$logfile) {
-                       return;
-               }
-
-               $developIp = Config::get('system', 'dlogip');
+               self::$type = self::TYPE_WORKER;
+               self::getWorker()->setFunctionName($functionName);
+       }
 
-               self::$devLogger = LoggerFactory::createDev('develop', $developIp);
-               LoggerFactory::addStreamHandler(self::$devLogger, $logfile, LogLevel::DEBUG);
+       /**
+        * Disable additional logging for worker usage
+        */
+       public static function disableWorker()
+       {
+               self::$type = self::TYPE_LOGGER;
        }
 
        /**
         * System is unusable.
+        *
         * @see LoggerInterface::emergency()
         *
         * @param string $message
         * @param array  $context
         *
         * @return void
-        *
+        * @throws \Exception
         */
        public static function emergency($message, $context = [])
        {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-               $stamp1 = microtime(true);
-               self::$logger->emergency($message, $context);
-               self::getApp()->saveTimestamp($stamp1, 'file');
+               self::getWorker()->emergency($message, $context);
        }
 
        /**
@@ -138,17 +104,11 @@ class Logger extends BaseObject
         * @param array  $context
         *
         * @return void
-        *
+        * @throws \Exception
         */
        public static function alert($message, $context = [])
        {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-               $stamp1 = microtime(true);
-               self::$logger->alert($message, $context);
-               self::getApp()->saveTimestamp($stamp1, 'file');
+               self::getWorker()->alert($message, $context);
        }
 
        /**
@@ -161,17 +121,11 @@ class Logger extends BaseObject
         * @param array  $context
         *
         * @return void
-        *
+        * @throws \Exception
         */
        public static function critical($message, $context = [])
        {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-               $stamp1 = microtime(true);
-               self::$logger->critical($message, $context);
-               self::getApp()->saveTimestamp($stamp1, 'file');
+               self::getWorker()->critical($message, $context);
        }
 
        /**
@@ -183,18 +137,11 @@ class Logger extends BaseObject
         * @param array  $context
         *
         * @return void
-        *
+        * @throws \Exception
         */
        public static function error($message, $context = [])
        {
-               if (!isset(self::$logger)) {
-                       echo "not set!?\n";
-                       return;
-               }
-
-               $stamp1 = microtime(true);
-               self::$logger->error($message, $context);
-               self::getApp()->saveTimestamp($stamp1, 'file');
+               self::getWorker()->error($message, $context);
        }
 
        /**
@@ -208,17 +155,11 @@ class Logger extends BaseObject
         * @param array  $context
         *
         * @return void
-        *
+        * @throws \Exception
         */
        public static function warning($message, $context = [])
        {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-               $stamp1 = microtime(true);
-               self::$logger->warning($message, $context);
-               self::getApp()->saveTimestamp($stamp1, 'file');
+               self::getWorker()->warning($message, $context);
        }
 
        /**
@@ -229,17 +170,11 @@ class Logger extends BaseObject
         * @param array  $context
         *
         * @return void
-        *
+        * @throws \Exception
         */
        public static function notice($message, $context = [])
        {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-               $stamp1 = microtime(true);
-               self::$logger->notice($message, $context);
-               self::getApp()->saveTimestamp($stamp1, 'file');
+               self::getWorker()->notice($message, $context);
        }
 
        /**
@@ -252,17 +187,11 @@ class Logger extends BaseObject
         * @param array  $context
         *
         * @return void
-        *
+        * @throws \Exception
         */
        public static function info($message, $context = [])
        {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-               $stamp1 = microtime(true);
-               self::$logger->info($message, $context);
-               self::getApp()->saveTimestamp($stamp1, 'file');
+               self::getWorker()->info($message, $context);
        }
 
        /**
@@ -273,84 +202,26 @@ class Logger extends BaseObject
         * @param array  $context
         *
         * @return void
+        * @throws \Exception
         */
        public static function debug($message, $context = [])
        {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-               $stamp1 = microtime(true);
-               self::$logger->debug($message, $context);
-               self::getApp()->saveTimestamp($stamp1, 'file');
+               self::getWorker()->debug($message, $context);
        }
 
        /**
-        * Mapping a legacy level to the PSR-3 compliant levels
-        * @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#5-psrlogloglevel
+        * An alternative logger for development.
         *
-        * @param int $level the level to be mapped
+        * Works largely as log() but allows developers
+        * to isolate particular elements they are targetting
+        * personally without background noise
         *
-        * @return string the PSR-3 compliant level
+        * @param string $msg
+        * @param string $level
+        * @throws \Exception
         */
-       private static function mapPSR3Level($level)
+       public static function devLog($msg, $level = LogLevel::DEBUG)
        {
-               switch ($level) {
-                       case self::WARNING:
-                               return LogLevel::ERROR;
-                       case self::INFO:
-                               return LogLevel::WARNING;
-                       case self::TRACE:
-                               return LogLevel::NOTICE;
-                       case self::DEBUG:
-                               return LogLevel::INFO;
-                       case self::DATA:
-                               return LogLevel::DEBUG;
-                       case self::ALL:
-                               return LogLevel::DEBUG;
-                       default:
-                               return LogLevel::CRITICAL;
-               }
+               DI::devLogger()->log($level, $msg);
        }
-
-    /**
-     * @brief Logs the given message at the given log level
-     *
-     * @param string $msg
-     * @param int $level
-        *
-        * @deprecated since 2019.03 Use Logger::debug() Logger::info() , ... instead
-     */
-    public static function log($msg, $level = self::INFO)
-    {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-               $loglevel = self::mapPSR3Level($level);
-
-        $stamp1 = microtime(true);
-               self::$logger->log($loglevel, $msg);
-        self::getApp()->saveTimestamp($stamp1, "file");
-    }
-
-    /**
-     * @brief An alternative logger for development.
-     * Works largely as log() but allows developers
-     * to isolate particular elements they are targetting
-     * personally without background noise
-     *
-     * @param string $msg
-        * @param string $level
-     */
-    public static function devLog($msg, $level = LogLevel::DEBUG)
-    {
-               if (!isset(self::$logger)) {
-                       return;
-               }
-
-        $stamp1 = microtime(true);
-        self::$devLogger->log($level, $msg);
-        self::getApp()->saveTimestamp($stamp1, "file");
-    }
 }