%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/vendor/cakephp/cakephp/src/Log/Engine/ |
Upload File : |
<?php
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakefoundation.org CakePHP(tm) Project
* @since 2.2.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Log\Engine;
use Cake\Console\ConsoleOutput;
use InvalidArgumentException;
/**
* Console logging. Writes logs to console output.
*/
class ConsoleLog extends BaseLog
{
/**
* Default config for this class
*
* @var array
*/
protected $_defaultConfig = [
'stream' => 'php://stderr',
'levels' => null,
'scopes' => [],
'outputAs' => 'see constructor'
];
/**
* Output stream
*
* @var \Cake\Console\ConsoleOutput
*/
protected $_output;
/**
* Constructs a new Console Logger.
*
* Config
*
* - `levels` string or array, levels the engine is interested in
* - `scopes` string or array, scopes the engine is interested in
* - `stream` the path to save logs on.
* - `outputAs` integer or ConsoleOutput::[RAW|PLAIN|COLOR]
*
* @param array $config Options for the FileLog, see above.
* @throws \InvalidArgumentException
*/
public function __construct(array $config = [])
{
if ((DIRECTORY_SEPARATOR === '\\' && !(bool)env('ANSICON') && env('ConEmuANSI') !== 'ON') ||
(function_exists('posix_isatty') && !posix_isatty($this->_output))
) {
$this->_defaultConfig['outputAs'] = ConsoleOutput::PLAIN;
} else {
$this->_defaultConfig['outputAs'] = ConsoleOutput::COLOR;
}
parent::__construct($config);
$config = $this->_config;
if ($config['stream'] instanceof ConsoleOutput) {
$this->_output = $config['stream'];
} elseif (is_string($config['stream'])) {
$this->_output = new ConsoleOutput($config['stream']);
} else {
throw new InvalidArgumentException('`stream` not a ConsoleOutput nor string');
}
$this->_output->setOutputAs($config['outputAs']);
}
/**
* Implements writing to console.
*
* @param string $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 bool success of write.
*/
public function log($level, $message, array $context = [])
{
$message = $this->_format($message, $context);
$output = date('Y-m-d H:i:s') . ' ' . ucfirst($level) . ': ' . $message;
return (bool)$this->_output->write(sprintf('<%s>%s</%s>', $level, $output, $level));
}
}