X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FLogger.php;h=6dde142cc953f3feae67ec1c39d1d882d009909d;hb=1701ea2034feb1cb8b7cce8455ff8e3c1f8875c6;hp=6102baa5a5cb2ab73f564596494deb83a36fa669;hpb=8f9c0fe14956efbcaf0db9dbfb83222e18e0ab2f;p=friendica.git diff --git a/src/Core/Logger.php b/src/Core/Logger.php index 6102baa5a5..6dde142cc9 100644 --- a/src/Core/Logger.php +++ b/src/Core/Logger.php @@ -1,50 +1,79 @@ . + * */ + namespace Friendica\Core; -use Friendica\BaseObject; -use Friendica\Network\HTTPException\InternalServerErrorException; -use Friendica\Util\LoggerFactory; +use Friendica\DI; +use Friendica\Util\Logger\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() + * @deprecated since 2019.01 */ - const WARNING = 0; + const WARNING = LogLevel::ERROR; /** - * @deprecated 2019.03 use Logger::warning() instead * @see Logger::warning() + * @deprecated since 2019.01 */ - const INFO = 1; + const INFO = LogLevel::WARNING; /** - * @deprecated 2019.03 use Logger::notice() instead * @see Logger::notice() + * @deprecated since 2019.01 */ - const TRACE = 2; + const TRACE = LogLevel::NOTICE; /** - * @deprecated 2019.03 use Logger::info() instead * @see Logger::info() + * @deprecated since 2019.01 */ - const DEBUG = 3; + const DEBUG = LogLevel::INFO; /** - * @deprecated 2019.03 use Logger::debug() instead * @see Logger::debug() + * @deprecated since 2019.01 */ - const DATA = 4; + const DATA = LogLevel::DEBUG; /** - * @deprecated 2019.03 use Logger::debug() instead * @see Logger::debug() + * @deprecated since 2019.01 */ - const ALL = 5; + 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 @@ -58,70 +87,55 @@ class Logger extends BaseObject 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. - * @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; - } - - LoggerFactory::addStreamHandler($logger, $logfile, $loglevel); - - $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); } /** @@ -135,17 +149,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); } /** @@ -158,17 +166,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); } /** @@ -180,17 +182,11 @@ class Logger extends BaseObject * @param array $context * * @return void - * + * @throws \Exception */ public static function error($message, $context = []) { - if (!isset(self::$logger)) { - return; - } - - $stamp1 = microtime(true); - self::$logger->error($message, $context); - self::getApp()->saveTimestamp($stamp1, 'file'); + self::getWorker()->error($message, $context); } /** @@ -204,17 +200,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); } /** @@ -225,17 +215,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); } /** @@ -248,17 +232,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); } /** @@ -269,84 +247,40 @@ 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 + * Logs the given message at the given log level * - * @param int $level the level to be mapped + * @param string $msg + * @param string $level * - * @return string the PSR-3 compliant level + * @throws \Exception + * @deprecated since 2019.03 Use Logger::debug() Logger::info() , ... instead */ - private static function mapPSR3Level($level) + public static function log($msg, $level = LogLevel::INFO) { - 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; - } + self::getWorker()->log($level, $msg); } - /** - * @brief Logs the given message at the given log level - * - * @param string $msg - * @param int $level + /** + * An alternative logger for development. * - * @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 + * 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"); - } + * @throws \Exception + */ + public static function devLog($msg, $level = LogLevel::DEBUG) + { + DI::devLogger()->log($level, $msg); + } }