summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitattributes1
-rw-r--r--framework/Log/ILog.php74
2 files changed, 75 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
index 8c756097..3da00821 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -143,6 +143,7 @@ framework/Log/EventLog/structs/log_filter.php -text
framework/Log/EventLog/writers/writer_database.php -text
framework/Log/EventLog/writers/writer_file.php -text
framework/Log/EventLog/writers/writer_unix_file.php -text
+framework/Log/ILog.php -text
framework/Log/TEventLog.php -text
framework/Log/TLogManager.php -text
framework/Security/TAuthManager.php -text
diff --git a/framework/Log/ILog.php b/framework/Log/ILog.php
new file mode 100644
index 00000000..712f8396
--- /dev/null
+++ b/framework/Log/ILog.php
@@ -0,0 +1,74 @@
+<?php
+
+interface ILog
+{
+ public function info($msg, $source='Prado', $category='core');
+ public function debug($msg, $source='Prado', $category='core');
+ public function notice($msg, $source='Prado', $category='core');
+ public function warn($msg, $source='Prado', $category='core');
+ public function error($msg, $source='Prado', $category='core');
+ public function fatal($msg, $source='Prado', $category='core');
+}
+
+require_once(dirname(__FILE__).'/EventLog/log.php');
+
+/**
+ * ${classname}
+ *
+ * ${description}
+ *
+ * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
+ * @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