Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
vendor /
psr /
log /
Psr /
Log /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractLogger.php
3.03
KB
-rw-rw-rw-
2023-02-07 22:26
InvalidArgumentException.php
96
B
-rw-rw-rw-
2023-02-07 22:26
LogLevel.php
336
B
-rw-rw-rw-
2023-02-07 22:26
LoggerAwareInterface.php
297
B
-rw-rw-rw-
2023-02-07 22:26
LoggerAwareTrait.php
402
B
-rw-rw-rw-
2023-02-07 22:26
LoggerInterface.php
3.04
KB
-rw-rw-rw-
2023-02-07 22:26
LoggerTrait.php
3.33
KB
-rw-rw-rw-
2023-02-07 22:26
NullLogger.php
707
B
-rw-rw-rw-
2023-02-07 22:26
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 $message * @param array $context * * @return void * * @throws \Psr\Log\InvalidArgumentException */ public function log($level, $message, array $context = array()) { // noop } }