TYPO3 API  SVNRelease
Logger.php
Go to the documentation of this file.
00001 <?php
00002 
00003 /*
00004  * This file is part of SwiftMailer.
00005  * (c) 2004-2009 Chris Corbyn
00006  *
00007  * For the full copyright and license information, please view the LICENSE
00008  * file that was distributed with this source code.
00009  */
00010 
00011 /**
00012  * Logs events in the Transport system.
00013  * @package Swift
00014  * @subpackage Transport
00015  * @author Chris Corbyn
00016  */
00017 interface Swift_Plugins_Logger
00018 {
00019 
00020   /**
00021    * Add a log entry.
00022    * @param string $entry
00023    */
00024   public function add($entry);
00025 
00026   /**
00027    * Clear the log contents.
00028    */
00029   public function clear();
00030 
00031   /**
00032    * Get this log as a string.
00033    * @return string
00034    */
00035   public function dump();
00036 
00037 }