Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
psr
/
log
/
src
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AbstractLogger.php
0.404KB
edt
ren
InvalidArgumentExceptio
...
0.094KB
edt
ren
LogLevel.php
0.328KB
edt
ren
LoggerAwareInterface.php
0.226KB
edt
ren
LoggerAwareTrait.php
0.339KB
edt
ren
LoggerInterface.php
2.705KB
edt
ren
LoggerTrait.php
2.69KB
edt
ren
NullLogger.php
0.628KB
edt
ren
<?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[] $context * * @throws \Psr\Log\InvalidArgumentException */ public function log($level, string|\Stringable $message, array $context = []): void { // noop } }