]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Logger.php
Remove unused killme()
[friendica.git] / src / Core / Logger.php
index fc2dde1dfe703f3de75e6044cc7fccc8b699e7bd..0ce2a6e675a2e6cdf3c91d48aac1e18f292229bc 100644 (file)
@@ -4,6 +4,8 @@
  */
 namespace Friendica\Core;
 
+use Friendica\DI;
+use Friendica\Util\Logger\WorkerLogger;
 use Psr\Log\LoggerInterface;
 use Psr\Log\LogLevel;
 
@@ -37,6 +39,19 @@ class Logger
         */
        const ALL = LogLevel::DEBUG;
 
+       /**
+        * @var LoggerInterface The default Logger type
+        */
+       const TYPE_LOGGER = LoggerInterface::class;
+       /**
+        * @var WorkerLogger A specific worker logger type, which can be anabled
+        */
+       const TYPE_WORKER = WorkerLogger::class;
+       /**
+        * @var LoggerInterface The current logger type
+        */
+       private static $type = self::TYPE_LOGGER;
+
        /**
         * @var array the legacy loglevels
         * @deprecated 2019.03 use PSR-3 loglevels
@@ -49,37 +64,39 @@ class Logger
                self::TRACE => 'Trace',
                self::DEBUG => 'Debug',
                self::DATA => 'Data',
-               self::ALL => 'All',
        ];
 
        /**
-        * @var LoggerInterface A PSR-3 compliant logger instance
+        * @return LoggerInterface
         */
-       private static $logger;
-
-       /**
-        * @var LoggerInterface A PSR-3 compliant logger instance for developing only
-        */
-       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.
+        * 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 \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function init(LoggerInterface $logger)
+       public static function enableWorker(string $functionName)
        {
-               self::$logger = $logger;
+               self::$type = self::TYPE_WORKER;
+               self::getWorker()->setFunctionName($functionName);
        }
 
        /**
-        * Sets the default dev-logging handler for Friendica.
-        *
-        * @param LoggerInterface $logger The Logger instance of this Application
+        * Disable additional logging for worker usage
         */
-       public static function setDevLogger(LoggerInterface $logger)
+       public static function disableWorker()
        {
-               self::$devLogger = $logger;
+               self::$type = self::TYPE_LOGGER;
        }
 
        /**
@@ -95,7 +112,7 @@ class Logger
         */
        public static function emergency($message, $context = [])
        {
-               self::$logger->emergency($message, $context);
+               self::getWorker()->emergency($message, $context);
        }
 
        /**
@@ -113,7 +130,7 @@ class Logger
         */
        public static function alert($message, $context = [])
        {
-               self::$logger->alert($message, $context);
+               self::getWorker()->alert($message, $context);
        }
 
        /**
@@ -130,7 +147,7 @@ class Logger
         */
        public static function critical($message, $context = [])
        {
-               self::$logger->critical($message, $context);
+               self::getWorker()->critical($message, $context);
        }
 
        /**
@@ -146,7 +163,7 @@ class Logger
         */
        public static function error($message, $context = [])
        {
-               self::$logger->error($message, $context);
+               self::getWorker()->error($message, $context);
        }
 
        /**
@@ -164,7 +181,7 @@ class Logger
         */
        public static function warning($message, $context = [])
        {
-               self::$logger->warning($message, $context);
+               self::getWorker()->warning($message, $context);
        }
 
        /**
@@ -179,7 +196,7 @@ class Logger
         */
        public static function notice($message, $context = [])
        {
-               self::$logger->notice($message, $context);
+               self::getWorker()->notice($message, $context);
        }
 
        /**
@@ -196,7 +213,7 @@ class Logger
         */
        public static function info($message, $context = [])
        {
-               self::$logger->info($message, $context);
+               self::getWorker()->info($message, $context);
        }
 
        /**
@@ -211,7 +228,7 @@ class Logger
         */
        public static function debug($message, $context = [])
        {
-               self::$logger->debug($message, $context);
+               self::getWorker()->debug($message, $context);
        }
 
            /**
@@ -225,7 +242,7 @@ class Logger
         */
        public static function log($msg, $level = LogLevel::INFO)
        {
-               self::$logger->log($level, $msg);
+               self::getWorker()->log($level, $msg);
        }
 
        /**
@@ -240,10 +257,6 @@ class Logger
         */
        public static function devLog($msg, $level = LogLevel::DEBUG)
        {
-               if (!isset(self::$devLogger)) {
-                       return;
-               }
-
-               self::$devLogger->log($level, $msg);
+               DI::devLogger()->log($level, $msg);
        }
 }