Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.187.75
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
source /
vendor /
psr /
log /
Psr /
Log /
[ HOME SHELL ]
Name
Size
Permission
Action
Test
[ DIR ]
drwxr-xr-x
AbstractLogger.php
3.03
KB
-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
402
B
-rw-r--r--
LoggerInterface.php
3.04
KB
-rw-r--r--
LoggerTrait.php
3.33
KB
-rw-r--r--
NullLogger.php
707
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 $message * @param array $context * * @return void * * @throws \Psr\Log\InvalidArgumentException */ public function log($level, $message, array $context = array()) { // noop } }
Close