mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
43 lines
878 B
PHP
43 lines
878 B
PHP
|
<?php
|
||
|
require_once 'Zend/Log.php';
|
||
|
|
||
|
/**
|
||
|
* Extensions to Zend_Log to make it work nicer
|
||
|
* with {@link SS_Log}.
|
||
|
*
|
||
|
* Please refer to {@link SS_Log} for information on
|
||
|
* setting up logging for your projects.
|
||
|
*
|
||
|
* @package sapphire
|
||
|
* @subpackage dev
|
||
|
*/
|
||
|
class SS_ZendLog extends Zend_Log {
|
||
|
|
||
|
/**
|
||
|
* Get all writers in this logger.
|
||
|
* @return array of Zend_Log_Writer_Abstract instances
|
||
|
*/
|
||
|
public function getWriters() {
|
||
|
return $this->_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();
|
||
|
}
|
||
|
|
||
|
}
|