diff options
author | xue <> | 2006-04-03 13:05:22 +0000 |
---|---|---|
committer | xue <> | 2006-04-03 13:05:22 +0000 |
commit | 940a53f12d6aa0984608b9b59d94723658dfd409 (patch) | |
tree | c708782619055094d38c536ddc733c0c3167ce3a /framework/Util/TLogRouter.php | |
parent | 1e0efb03df0ad2309a3e3bef64c6268a292373b9 (diff) |
Added TPropelLogRoute.
Diffstat (limited to 'framework/Util/TLogRouter.php')
-rw-r--r-- | framework/Util/TLogRouter.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/framework/Util/TLogRouter.php b/framework/Util/TLogRouter.php index bdad8649..06d70b1e 100644 --- a/framework/Util/TLogRouter.php +++ b/framework/Util/TLogRouter.php @@ -292,7 +292,13 @@ abstract class TLogRoute extends TApplicationComponent /**
* Processes log messages and sends them to specific destination.
* Derived child classes must implement this method.
- * @param array list of messages. Each array element is a (formatted) message string.
+ * @param array list of messages. Each array elements represents one message
+ * with the following structure:
+ * array(
+ * [0] => message
+ * [1] => level
+ * [2] => category
+ * [3] => timestamp);
*/
abstract protected function processLogs($logs);
}
|