diff options
author | wei <> | 2006-01-04 08:10:56 +0000 |
---|---|---|
committer | wei <> | 2006-01-04 08:10:56 +0000 |
commit | 3628bfe141ef02299beb9514397cfc2c27a7dcb1 (patch) | |
tree | e1b09079bee418e45af6c49314a9f0fec5cf2012 /framework/Log/TLog.php | |
parent | 0ebae0856a5ed24bcc1b01d13d8715288f39a08d (diff) |
adding TEventLog using ezcLog from ezComponents.
Diffstat (limited to 'framework/Log/TLog.php')
-rw-r--r-- | framework/Log/TLog.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/framework/Log/TLog.php b/framework/Log/TLog.php new file mode 100644 index 00000000..0a455c84 --- /dev/null +++ b/framework/Log/TLog.php @@ -0,0 +1,13 @@ +<?php
+
+interface TLog
+{
+ public function info($msg, $source='Prado', $category='main');
+ public function debug($msg, $source='Prado', $category='main');
+ public function notice($msg, $source='Prado', $category='main');
+ public function warn($msg, $source='Prado', $category='main');
+ public function error($msg, $source='Prado', $category='main');
+ public function fatal($msg, $source='Prado', $category='main');
+}
+
+?>
\ No newline at end of file |