* @package generis */ interface common_log_Appender { // --- OPERATIONS --- /** * decides whenever the Item should be logged by doLog * * @access public * @author Joel Bout, * @param Item item * @return mixed * @see doLog */ public function log(common_log_Item $item); /** * Short description of method getLogThreshold * * @access public * @author Joel Bout, * @return int */ public function getLogThreshold(); /** * Short description of method init * * @access public * @author Joel Bout, * @param array configuration * @return boolean */ public function init($configuration); } /* end of interface common_log_Appender */