BufferingLogger.php 752 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Debug;
  11. use Psr\Log\AbstractLogger;
  12. /**
  13. * A buffering logger that stacks logs for later.
  14. *
  15. * @author Nicolas Grekas <p@tchwork.com>
  16. */
  17. class BufferingLogger extends AbstractLogger
  18. {
  19. private $logs = array();
  20. public function log($level, $message, array $context = array())
  21. {
  22. $this->logs[] = array($level, $message, $context);
  23. }
  24. public function cleanLogs()
  25. {
  26. $logs = $this->logs;
  27. $this->logs = array();
  28. return $logs;
  29. }
  30. }