. */ /** * Logs events in the Transport system. * @package Swift * @subpackage Transport * @author Chris Corbyn */ interface Swift_Plugins_Logger { /** * Add a log entry. * @param string $entry */ public function add($entry); /** * Clear the log contents. */ public function clear(); /** * Get this log as a string. * @return string */ public function dump(); }