OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
php
/
Symfony
/
Component
/
Debug
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/20/2024 06:32:22 AM
rwxr-xr-x
📄
BufferingLogger.php
752 bytes
03/05/2018 08:02:01 PM
rw-r--r--
📄
Debug.php
1.75 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
DebugClassLoader.php
16.21 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
ErrorHandler.php
28.74 KB
03/05/2018 08:02:01 PM
rw-r--r--
📁
Exception
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📄
ExceptionHandler.php
31.98 KB
03/05/2018 08:02:01 PM
rw-r--r--
📁
FatalErrorHandler
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📄
autoload.php
2.59 KB
09/11/2018 01:43:12 PM
rw-r--r--
Editing: BufferingLogger.php
Close
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Debug; use Psr\Log\AbstractLogger; /** * A buffering logger that stacks logs for later. * * @author Nicolas Grekas <p@tchwork.com> */ class BufferingLogger extends AbstractLogger { private $logs = array(); public function log($level, $message, array $context = array()) { $this->logs[] = array($level, $message, $context); } public function cleanLogs() { $logs = $this->logs; $this->logs = array(); return $logs; } }