Linux premium256.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 162.0.217.164 & Your IP : 216.73.216.70
Domains :
Cant Read [ /etc/named.conf ]
User : niyknzcu
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpanel /
ea-wappspector /
vendor /
psr /
log /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractLogger.php
414
B
-rw-r--r--
2021-07-14 16:41
InvalidArgumentException.php
96
B
-rw-r--r--
2021-07-14 16:41
LogLevel.php
336
B
-rw-r--r--
2021-07-14 16:41
LoggerAwareInterface.php
297
B
-rw-r--r--
2021-07-14 16:41
LoggerAwareTrait.php
426
B
-rw-r--r--
2021-07-14 16:41
LoggerInterface.php
3.26
KB
-rw-r--r--
2021-07-14 16:41
LoggerTrait.php
3.56
KB
-rw-r--r--
2021-07-14 16:41
NullLogger.php
732
B
-rw-r--r--
2021-07-14 16:41
Save
Rename
<?php namespace Psr\Log; /** * This Logger can be used to avoid conditional log calls. * * Logging should always be optional, and if no logger is provided to your * library creating a NullLogger instance to have something to throw logs at * is a good way to avoid littering your code with `if ($this->logger) { }` * blocks. */ class NullLogger extends AbstractLogger { /** * Logs with an arbitrary level. * * @param mixed $level * @param string|\Stringable $message * @param array $context * * @return void * * @throws \Psr\Log\InvalidArgumentException */ public function log($level, string|\Stringable $message, array $context = []) { // noop } }