_writers; } /** * Remove a writer instance that exists in this logger. * @param object Zend_Log_Writer_Abstract instance */ public function removeWriter($writer) { foreach($this->_writers as $index => $existingWriter) { if($existingWriter == $writer) { unset($this->_writers[$index]); } } } /** * Clear all writers in this logger. */ public function clearWriters() { $this->_writers = array(); } }