1. sfLoggerInterface.class.php
  2. /** * sfLoggerInterface is the interface all symfony loggers must implement. * * @package symfony * @subpackage log * @author Fabien Potencier * @version SVN: $Id: sfLoggerInterface.class.php 9081 2008-05-20 00:47:12Z Carl.Vondrick $ */
  3. interface sfLoggerInterface
  4. {
  5. /**
  6. * Logs a message.
  7. *
  8. * @param string $message Message
  9. * @param string $priority Message priority
  10. */
  11. public function log($message, $priority = null);
  12. }

Debug toolbar