From 09596d92b2eea0f70c98cc5abca6f5dbd4629802 Mon Sep 17 00:00:00 2001 From: xue <> Date: Sun, 8 Jan 2006 18:13:02 +0000 Subject: Completed TLogger, TLogRouter, TFileLogRoute, TEmailLogRoute --- framework/Log/TEventLog.php | 78 --------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 framework/Log/TEventLog.php (limited to 'framework/Log/TEventLog.php') diff --git a/framework/Log/TEventLog.php b/framework/Log/TEventLog.php deleted file mode 100644 index 8fb56618..00000000 --- a/framework/Log/TEventLog.php +++ /dev/null @@ -1,78 +0,0 @@ - - * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $ - * @package ${package} - */ -class TEventLog extends TLogManager implements ILog -{ - public function init($config) - { - parent::init($config); - $this->collectInternalLog(); - } - - public function __destruct() - { - $this->collectInternalLog(); - } - - protected function collectInternalLog() - { - foreach(Prado::coreLog()->entries as $entry) - $this->log($entry[0], $entry[1], $entry[2]); - Prado::coreLog()->entries = array(); - } - - public function info($msg, $source='Prado', $category='main') - { - $this->log($msg, ezcLog::INFO, - array('source'=>$source, 'category'=>$category)); - } - - public function debug($msg, $source='Prado', $category='main') - { - $this->log($msg, ezcLog::DEBUG, - array('source'=>$source, 'category'=>$category)); - } - - public function notice($msg, $source='Prado', $category='main') - { - $this->log($msg, ezcLog::NOTICE, - array('source'=>$source, 'category'=>$category)); - } - - public function warn($msg, $source='Prado', $category='main') - { - $this->log($msg, ezcLog::WARNING, - array('source'=>$source, 'category'=>$category)); - } - - public function error($msg, $source='Prado', $category='main') - { - $this->log($msg, ezcLog::NOTICE, - array('source'=>$source, 'category'=>$category)); - - } - - public function fatal($msg, $source='Prado', $category='main') - { - $this->log($msg, ezcLog::NOTICE, - array('source'=>$source, 'category'=>$category)); - } - - protected function log($msg, $code, $info) - { - ezcLog::getInstance()->log($msg, $code, $info); - } -} - -?> \ No newline at end of file -- cgit v1.2.3