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/ILog.php | 76 -------------------------------------------------- 1 file changed, 76 deletions(-) delete mode 100644 framework/Log/ILog.php (limited to 'framework/Log/ILog.php') diff --git a/framework/Log/ILog.php b/framework/Log/ILog.php deleted file mode 100644 index 90239e97..00000000 --- a/framework/Log/ILog.php +++ /dev/null @@ -1,76 +0,0 @@ - - * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $ - * @package ${package} - */ -class TInternalLogger -{ - public $entries = array(); - - public function info($msg, $source='Prado', $category='core') - { - $this->log($msg, ezcLog::INFO, - array('source'=>$source, 'category'=>$category)); - } - public function debug($msg, $source='Prado', $category='core') - { - $this->log($msg, ezcLog::DEBUG, - array('source'=>$source, 'category'=>$category)); - } - public function notice($msg, $source='Prado', $category='core') - { - $this->log($msg, ezcLog::NOTICE, - array('source'=>$source, 'category'=>$category)); - } - - public function warn($msg, $source='Prado', $category='core') - { - $this->log($msg, ezcLog::WARNING, - array('source'=>$source, 'category'=>$category)); - } - - public function error($msg, $source='Prado', $category='core') - { - $this->log($msg, ezcLog::ERROR, - array('source'=>$source, 'category'=>$category)); - } - - public function fatal($msg, $source='Prado', $category='core') - { - $this->log($msg, ezcLog::FATAL, - array('source'=>$source, 'category'=>$category)); - } - - protected function log($msg, $type, $info) - { - if($info['category']=='core') - { - $trace = debug_backtrace(); - $info['category'] = $trace[3]['class']; - } - $info['time'] = microtime(true); - $this->entries[] = array($msg, $type, $info); - } -} - -?> \ No newline at end of file -- cgit v1.2.3