2018-10-29 21:10:35 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Core/Logger.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2019-07-21 20:24:16 +02:00
|
|
|
use Friendica\BaseObject;
|
|
|
|
use Friendica\Util\Logger\WorkerLogger;
|
2018-12-30 21:42:56 +01:00
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use Psr\Log\LogLevel;
|
2018-10-29 21:10:35 +01:00
|
|
|
|
2018-10-30 12:59:45 +01:00
|
|
|
/**
|
|
|
|
* @brief Logger functions
|
|
|
|
*/
|
2019-07-21 20:24:16 +02:00
|
|
|
class Logger extends BaseObject
|
2018-10-29 21:10:35 +01:00
|
|
|
{
|
2018-12-30 21:42:56 +01:00
|
|
|
/**
|
|
|
|
* @see Logger::error()
|
|
|
|
*/
|
|
|
|
const WARNING = LogLevel::ERROR;
|
|
|
|
/**
|
|
|
|
* @see Logger::warning()
|
|
|
|
*/
|
|
|
|
const INFO = LogLevel::WARNING;
|
|
|
|
/**
|
|
|
|
* @see Logger::notice()
|
|
|
|
*/
|
|
|
|
const TRACE = LogLevel::NOTICE;
|
|
|
|
/**
|
|
|
|
* @see Logger::info()
|
|
|
|
*/
|
|
|
|
const DEBUG = LogLevel::INFO;
|
|
|
|
/**
|
|
|
|
* @see Logger::debug()
|
|
|
|
*/
|
|
|
|
const DATA = LogLevel::DEBUG;
|
|
|
|
/**
|
|
|
|
* @see Logger::debug()
|
|
|
|
*/
|
|
|
|
const ALL = LogLevel::DEBUG;
|
|
|
|
|
2019-07-21 20:24:16 +02:00
|
|
|
/**
|
|
|
|
* @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;
|
|
|
|
|
2018-12-30 21:42:56 +01:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public static $levels = [
|
|
|
|
self::WARNING => 'Warning',
|
|
|
|
self::INFO => 'Info',
|
|
|
|
self::TRACE => 'Trace',
|
|
|
|
self::DEBUG => 'Debug',
|
|
|
|
self::DATA => 'Data',
|
|
|
|
self::ALL => 'All',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
2019-07-21 20:24:16 +02:00
|
|
|
* Enable additional logging for worker usage
|
|
|
|
*
|
|
|
|
* @param string $functionName The worker function, which got called
|
2018-12-30 21:42:56 +01:00
|
|
|
*
|
2019-07-21 20:24:16 +02:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
2019-07-21 20:24:16 +02:00
|
|
|
public static function enableWorker(string $functionName)
|
2018-12-30 21:42:56 +01:00
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::$type = self::TYPE_WORKER;
|
|
|
|
self::getClass(self::$type)->setFunctionName($functionName);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-07-21 20:24:16 +02:00
|
|
|
* Disable additional logging for worker usage
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
2019-07-21 20:24:16 +02:00
|
|
|
public static function disableWorker()
|
2018-12-30 21:42:56 +01:00
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::$type = self::TYPE_LOGGER;
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* System is unusable.
|
2019-01-06 22:06:53 +01:00
|
|
|
*
|
2018-12-30 21:42:56 +01:00
|
|
|
* @see LoggerInterface::emergency()
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
|
|
|
public static function emergency($message, $context = [])
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->emergency($message, $context);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action must be taken immediately.
|
|
|
|
* @see LoggerInterface::alert()
|
|
|
|
*
|
|
|
|
* Example: Entire website down, database unavailable, etc. This should
|
|
|
|
* trigger the SMS alerts and wake you up.
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
|
|
|
public static function alert($message, $context = [])
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->alert($message, $context);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Critical conditions.
|
|
|
|
* @see LoggerInterface::critical()
|
|
|
|
*
|
|
|
|
* Example: Application component unavailable, unexpected exception.
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
|
|
|
public static function critical($message, $context = [])
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->critical($message, $context);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Runtime errors that do not require immediate action but should typically
|
|
|
|
* be logged and monitored.
|
|
|
|
* @see LoggerInterface::error()
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
|
|
|
public static function error($message, $context = [])
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->error($message, $context);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exceptional occurrences that are not errors.
|
|
|
|
* @see LoggerInterface::warning()
|
|
|
|
*
|
|
|
|
* Example: Use of deprecated APIs, poor use of an API, undesirable things
|
|
|
|
* that are not necessarily wrong.
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
|
|
|
public static function warning($message, $context = [])
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->warning($message, $context);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normal but significant events.
|
|
|
|
* @see LoggerInterface::notice()
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
|
|
|
public static function notice($message, $context = [])
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->notice($message, $context);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interesting events.
|
|
|
|
* @see LoggerInterface::info()
|
|
|
|
*
|
|
|
|
* Example: User logs in, SQL logs.
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
|
|
|
public static function info($message, $context = [])
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->info($message, $context);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Detailed debug information.
|
|
|
|
* @see LoggerInterface::debug()
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param array $context
|
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
|
|
|
public static function debug($message, $context = [])
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->debug($message, $context);
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|
2019-01-01 17:42:08 +01:00
|
|
|
|
2019-02-17 02:09:39 +01:00
|
|
|
/**
|
|
|
|
* @brief Logs the given message at the given log level
|
|
|
|
*
|
|
|
|
* @param string $msg
|
|
|
|
* @param string $level
|
2018-12-30 21:42:56 +01:00
|
|
|
*
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
* @deprecated since 2019.03 Use Logger::debug() Logger::info() , ... instead
|
2019-02-17 02:09:39 +01:00
|
|
|
*/
|
|
|
|
public static function log($msg, $level = LogLevel::INFO)
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass(self::$type)->log($level, $msg);
|
2019-02-17 02:09:39 +01:00
|
|
|
}
|
2018-10-29 21:10:35 +01:00
|
|
|
|
2019-01-06 22:06:53 +01:00
|
|
|
/**
|
|
|
|
* @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
|
2018-12-30 21:42:56 +01:00
|
|
|
* @param string $level
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2019-02-17 02:09:39 +01:00
|
|
|
public static function devLog($msg, $level = LogLevel::DEBUG)
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
self::getClass('$devLogger')->log($level, $msg);
|
2019-02-17 02:09:39 +01:00
|
|
|
}
|
2018-10-30 12:59:45 +01:00
|
|
|
}
|