1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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\Bridge\Monolog;
- use Monolog\Logger as BaseLogger;
- use Symfony\Component\HttpKernel\Log\LoggerInterface;
- use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
- /**
- * Logger.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- class Logger extends BaseLogger implements LoggerInterface
- {
- /**
- * Returns a DebugLoggerInterface instance if one is registered with this logger.
- *
- * @return DebugLoggerInterface A DebugLoggerInterface instance or null if none is registered
- */
- public function getDebugLogger()
- {
- foreach ($this->handlers as $handler) {
- if ($handler instanceof DebugLoggerInterface) {
- return $handler;
- }
- }
- }
- }
|