1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Symfony\Bundle\FrameworkBundle\Templating;
- use Symfony\Components\Templating\DebuggerInterface;
- use Symfony\Components\HttpKernel\Log\LoggerInterface;
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * Binds the Symfony templating loader debugger to the Symfony logger.
- *
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- */
- class Debugger implements DebuggerInterface
- {
- protected $logger;
- /**
- * Constructor.
- *
- * @param LoggerInterface $logger A LoggerInterface instance
- */
- public function __construct(LoggerInterface $logger = null)
- {
- $this->logger = $logger;
- }
- /**
- * Logs a message.
- *
- * @param string $message A message to log
- */
- public function log($message)
- {
- if (null !== $this->logger) {
- $this->logger->info($message);
- }
- }
- }
|