OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
psr
/
log
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:33:31 AM
rwxr-xr-x
📄
AbstractLogger.php
429 bytes
08/12/2024 10:33:31 AM
rw-r--r--
📄
InvalidArgumentException.php
103 bytes
08/12/2024 10:33:31 AM
rw-r--r--
📄
LogLevel.php
354 bytes
08/12/2024 10:33:31 AM
rw-r--r--
📄
LoggerAwareInterface.php
321 bytes
08/12/2024 10:33:31 AM
rw-r--r--
📄
LoggerAwareTrait.php
458 bytes
08/12/2024 10:33:31 AM
rw-r--r--
📄
LoggerInterface.php
3.44 KB
08/12/2024 10:33:31 AM
rw-r--r--
📄
LoggerTrait.php
3.75 KB
08/12/2024 10:33:31 AM
rw-r--r--
📄
NullLogger.php
768 bytes
08/12/2024 10:33:31 AM
rw-r--r--
Editing: AbstractLogger.php
Close
<?php namespace Psr\Log; /** * This is a simple Logger implementation that other Loggers can inherit from. * * It simply delegates all log-level-specific methods to the `log` method to * reduce boilerplate code that a simple Logger that does the same thing with * messages regardless of the error level has to implement. */ abstract class AbstractLogger implements LoggerInterface { use LoggerTrait; }