X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FLogger.php;h=6dde142cc953f3feae67ec1c39d1d882d009909d;hb=62e7d0f40aac689b56e79b504c6eb2e59cbe6c14;hp=c6b81e0cc993eea1ef1060f75a3f229a291f7212;hpb=6e48df21631f1c616a6c88369677ecf1038f4d1f;p=friendica.git diff --git a/src/Core/Logger.php b/src/Core/Logger.php index c6b81e0cc9..6dde142cc9 100644 --- a/src/Core/Logger.php +++ b/src/Core/Logger.php @@ -1,45 +1,80 @@ . + * */ + 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 { /** * @see Logger::error() + * @deprecated since 2019.01 */ const WARNING = LogLevel::ERROR; /** * @see Logger::warning() + * @deprecated since 2019.01 */ const INFO = LogLevel::WARNING; /** * @see Logger::notice() + * @deprecated since 2019.01 */ const TRACE = LogLevel::NOTICE; /** * @see Logger::info() + * @deprecated since 2019.01 */ const DEBUG = LogLevel::INFO; /** * @see Logger::debug() + * @deprecated since 2019.01 */ const DATA = LogLevel::DEBUG; /** * @see Logger::debug() + * @deprecated since 2019.01 */ 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 @@ -52,73 +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; - } - - $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); } /** @@ -132,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); } /** @@ -155,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); } /** @@ -177,18 +182,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); } /** @@ -202,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); } /** @@ -223,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); } /** @@ -246,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); } /** @@ -267,54 +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); } - /** - * @brief Logs the given message at the given log level - * - * @param string $msg - * @param int $level + /** + * Logs the given message at the given log level + * + * @param string $msg + * @param string $level * + * @throws \Exception * @deprecated since 2019.03 Use Logger::debug() Logger::info() , ... instead - */ - public static function log($msg, $level = LogLevel::NOTICE) - { - if (!isset(self::$logger)) { - return; - } - - $stamp1 = microtime(true); - self::$logger->log($level, $msg); - self::getApp()->saveTimestamp($stamp1, "file"); - } + */ + public static function log($msg, $level = LogLevel::INFO) + { + self::getWorker()->log($level, $msg); + } - /** - * @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 + /** + * 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"); - } + * @throws \Exception + */ + public static function devLog($msg, $level = LogLevel::DEBUG) + { + DI::devLogger()->log($level, $msg); + } }