1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik;
use Piwik\Log\Logger;
use Piwik\Container\StaticContainer;
use Piwik\Log\LoggerInterface;
/**
* Logging utility class.
*
* Log entries are made with a message and log level. The logging utility will tag each
* log entry with the name of the plugin that's doing the logging. If no plugin is found,
* the name of the current class is used.
*
* You can log messages using one of the public static functions (eg, 'error', 'warning',
* 'info', etc.).
*
* Currently, Piwik supports the following logging backends:
*
* - **screen**: logging to the screen
* - **file**: logging to a file
* - **database**: logging to Piwik's MySQL database
*
* Messages logged in the console will always be logged to the console output.
*
* ### Logging configuration
*
* The logging utility can be configured by manipulating the INI config options in the
* `[log]` section.
*
* The following configuration options can be set:
*
* - `log_writers[]`: This is an array of log writer IDs. The three log writers provided
* by Piwik core are **file**, **screen**, **database**, **errorlog**,
* and **syslog**. You can get more by installing plugins. The default
* value is **screen**.
* - `log_level`: The current log level. Can be **ERROR**, **WARN**, **INFO**, **DEBUG**,
* or **VERBOSE**. Log entries made with a log level that is as or more
* severe than the current log level will be outputted. Others will be
* ignored. The default level is **WARN**.
* - `logger_file_path`: For the file log writer, specifies the path to the log file
* to log to or a path to a directory to store logs in. If a
* directory, the file name is piwik.log. Can be relative to
* Piwik's root dir or an absolute path. Defaults to **tmp/logs**.
* - `logger_syslog_ident`: If configured to log to syslog, mark them with this
* identifier string. This acts as an easy-to-find tag in
* the syslog.
*
*
* @deprecated Inject and use Piwik\Log\LoggerInterface instead of this class.
* @see \Piwik\Log\LoggerInterface
*/
class Log extends Singleton
{
// log levels
public const NONE = 0;
public const ERROR = 1;
public const WARN = 2;
public const INFO = 3;
public const DEBUG = 4;
public const VERBOSE = 5;
// config option names
public const LOG_LEVEL_CONFIG_OPTION = 'log_level';
public const LOG_WRITERS_CONFIG_OPTION = 'log_writers';
public const LOGGER_FILE_PATH_CONFIG_OPTION = 'logger_file_path';
public const STRING_MESSAGE_FORMAT_OPTION = 'string_message_format';
/**
* The backtrace string to use when testing.
*
* @var string
*/
public static $debugBacktraceForTests;
/**
* Singleton instance.
*
* @var Log|null
*/
private static $instance;
/**
* @var LoggerInterface
*/
private $logger;
public static function getInstance()
{
if (self::$instance === null) {
self::$instance = StaticContainer::get(__CLASS__);
}
return self::$instance;
}
public static function unsetInstance()
{
self::$instance = null;
}
public static function setSingletonInstance($instance)
{
self::$instance = $instance;
}
public function __construct(LoggerInterface $logger)
{
$this->logger = $logger;
}
/**
* Logs a message using the ERROR log level.
*
* @param string $message The log message. This can be a sprintf format string.
* @param mixed ...$printFparams Optional sprintf params.
* @api
*
* @deprecated Inject and call Piwik\Log\LoggerInterface::error() instead.
* @see \Piwik\Log\LoggerInterface::error()
*/
public static function error($message, ...$printFparams)
{
self::logMessage(Logger::ERROR, $message, $printFparams);
}
/**
* Logs a message using the WARNING log level.
*
* @param string $message The log message. This can be a sprintf format string.
* @param mixed ...$printFparams Optional sprintf params.
* @api
*
* @deprecated Inject and call Piwik\Log\LoggerInterface::warning() instead.
* @see \Piwik\Log\LoggerInterface::warning()
*/
public static function warning($message, ...$printFparams)
{
self::logMessage(Logger::WARNING, $message, $printFparams);
}
/**
* Logs a message using the INFO log level.
*
* @param string $message The log message. This can be a sprintf format string.
* @param mixed ...$printFparams Optional sprintf params.
* @api
*
* @deprecated Inject and call Piwik\Log\LoggerInterface::info() instead.
* @see \Piwik\Log\LoggerInterface::info()
*/
public static function info($message, ...$printFparams)
{
self::logMessage(Logger::INFO, $message, $printFparams);
}
/**
* Logs a message using the DEBUG log level.
*
* @param string $message The log message. This can be a sprintf format string.
* @param mixed ...$printFparams Optional sprintf params.
* @api
*
* @deprecated Inject and call Piwik\Log\LoggerInterface::debug() instead.
* @see \Piwik\Log\LoggerInterface::debug()
*/
public static function debug($message, ...$printFparams)
{
self::logMessage(Logger::DEBUG, $message, $printFparams);
}
/**
* Logs a message using the VERBOSE log level.
*
* @param string $message The log message. This can be a sprintf format string.
* @param mixed ...$printFparams Optional sprintf params.
* @api
*
* @deprecated Inject and call Piwik\Log\LoggerInterface::debug() instead (the verbose level doesn't exist in the PSR standard).
* @see \Piwik\Log\LoggerInterface::debug()
*/
public static function verbose($message, ...$printFparams)
{
self::logMessage(Logger::DEBUG, $message, $printFparams);
}
private function doLog($level, $message, $parameters = array())
{
// To ensure the compatibility with PSR-3, the message must be a string
if ($message instanceof \Exception) {
$parameters['exception'] = $message;
$message = $message->getMessage();
}
if (is_object($message) || is_array($message) || is_resource($message)) {
$this->logger->warning('Trying to log a message that is not a string', array(
'exception' => new \InvalidArgumentException('Trying to log a message that is not a string'),
));
return;
}
$this->logger->log($level, $message, $parameters);
}
private static function logMessage($level, $message, array $parameters)
{
self::getInstance()->doLog($level, $message, $parameters);
}
public static function getMonologLevel($level)
{
switch ($level) {
case self::ERROR:
return Logger::ERROR;
case self::WARN:
return Logger::WARNING;
case self::INFO:
return Logger::INFO;
case self::DEBUG:
return Logger::DEBUG;
case self::VERBOSE:
return Logger::DEBUG;
case self::NONE:
default:
// Highest level possible, need to do better in the future...
return Logger::EMERGENCY;
}
}
public static function getMonologLevelIfValid($level)
{
$level = strtoupper($level);
if (!empty($level) && defined('Piwik\Log::' . strtoupper($level))) {
return self::getMonologLevel(constant('Piwik\Log::' . strtoupper($level)));
}
return null;
}
}
|