OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
php
/
Psr
/
Log
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📄
AbstractLogger.php
3.02 KB
10/10/2016 12:19:37 PM
rw-r--r--
📄
InvalidArgumentException.php
96 bytes
10/10/2016 12:19:37 PM
rw-r--r--
📄
LogLevel.php
336 bytes
10/10/2016 12:19:37 PM
rw-r--r--
📄
LoggerAwareInterface.php
297 bytes
10/10/2016 12:19:37 PM
rw-r--r--
📄
LoggerAwareTrait.php
397 bytes
10/10/2016 12:19:37 PM
rw-r--r--
📄
LoggerInterface.php
2.97 KB
10/10/2016 12:19:37 PM
rw-r--r--
📄
LoggerTrait.php
3.28 KB
10/10/2016 12:19:37 PM
rw-r--r--
📄
NullLogger.php
651 bytes
10/10/2016 12:19:37 PM
rw-r--r--
📁
Test
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📄
autoload.php
1.16 KB
11/29/2017 07:25:12 PM
rw-r--r--
Editing: NullLogger.php
Close
<?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 */ public function log($level, $message, array $context = array()) { // noop } }