/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Log/Engine
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Log/Engine/SyslogLog.php (5358B)
'Syslog',
* 'levels' => ['emergency', 'alert', 'critical', 'error'],
* 'prefix' => 'Web Server 01'
* ]);
* ```
*
* @var array
*/
protected $_defaultConfig = [
'levels' => [],
'scopes' => [],
'flag' => LOG_ODELAY,
'prefix' => '',
'facility' => LOG_USER,
'formatter' => [
'className' => DefaultFormatter::class,
'includeDate' => false,
],
];
/**
* Used to map the string names back to their LOG_* constants
*
* @var array
*/
protected $_levelMap = [
'emergency' => LOG_EMERG,
'alert' => LOG_ALERT,
'critical' => LOG_CRIT,
'error' => LOG_ERR,
'warning' => LOG_WARNING,
'notice' => LOG_NOTICE,
'info' => LOG_INFO,
'debug' => LOG_DEBUG,
];
/**
* Whether the logger connection is open or not
*
* @var bool
*/
protected $_open = false;
/**
* @inheritDoc
*/
public function __construct(array $config = [])
{
if (isset($config['format'])) {
deprecationWarning(
'`format` option is now deprecated in favor of custom formatters. ' .
'Switching to `LegacySyslogFormatter`.',
0
);
/** @psalm-suppress DeprecatedClass */
$config['formatter'] = [
'className' => LegacySyslogFormatter::class,
'format' => $config['format'],
];
}
parent::__construct($config);
}
/**
* Writes a message to syslog
*
* Map the $level back to a LOG_ constant value, split multi-line messages into multiple
* log messages, pass all messages through the format defined in the configuration
*
* @param mixed $level The severity level of log you are making.
* @param string $message The message you want to log.
* @param array $context Additional information about the logged message
* @return void
* @see \Cake\Log\Log::$_levels
*/
public function log($level, $message, array $context = []): void
{
if (!$this->_open) {
$config = $this->_config;
$this->_open($config['prefix'], $config['flag'], $config['facility']);
$this->_open = true;
}
$priority = LOG_DEBUG;
if (isset($this->_levelMap[$level])) {
$priority = $this->_levelMap[$level];
}
$lines = explode("\n", $this->_format($message, $context));
foreach ($lines as $line) {
$this->_write($priority, $this->formatter->format($level, $line, $context));
}
}
/**
* Extracts the call to openlog() in order to run unit tests on it. This function
* will initialize the connection to the system logger
*
* @param string $ident the prefix to add to all messages logged
* @param int $options the options flags to be used for logged messages
* @param int $facility the stream or facility to log to
* @return void
*/
protected function _open(string $ident, int $options, int $facility): void
{
openlog($ident, $options, $facility);
}
/**
* Extracts the call to syslog() in order to run unit tests on it. This function
* will perform the actual write in the system logger
*
* @param int $priority Message priority.
* @param string $message Message to log.
* @return bool
*/
protected function _write(int $priority, string $message): bool
{
return syslog($priority, $message);
}
/**
* Closes the logger connection
*/
public function __destruct()
{
closelog();
}
}