⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Log
/
Handler
/
View File Name :
Cli.php
* @category Horde * @license http://www.horde.org/licenses/bsd BSD * @package Log * @subpackage Handlers */ /** * Logs to the command line interface using Horde_Cli. * * @author Jan Schneider
* @category Horde * @license http://www.horde.org/licenses/bsd BSD * @package Log * @subpackage Handlers */ class Horde_Log_Handler_Cli extends Horde_Log_Handler_Stream { /** * A CLI handler. * * @var Horde_Cli */ protected $_cli; /** * Class Constructor * * @param Horde_Log_Formatter $formatter Log formatter. */ public function __construct(Horde_Log_Formatter $formatter = null) { $this->_cli = new Horde_Cli(); $this->_formatter = is_null($formatter) ? new Horde_Log_Formatter_Cli($this->_cli) : $formatter; } /** * Write a message to the log. * * @param array $event Log event. * * @return boolean True. * @throws Horde_Log_Exception */ public function write($event) { $this->_cli->writeln($this->_formatter->format($event)); return true; } }