Changeset 562 for trunk/src/main/php/net/stubbles/util/log/stubLogData.php
- Timestamp:
- 04/19/07 17:19:35 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/log/stubLogData.php
r146 r562 15 15 * @subpackage util_log 16 16 */ 17 interface stubLogData 17 interface stubLogData extends stubObject 18 18 { 19 19 /** … … 21 21 */ 22 22 const SEPERATOR = '|'; 23 23 24 24 /** 25 25 * adds data to the log object … … 30 30 */ 31 31 public function addData($data); 32 32 33 33 /** 34 34 * returns the whole log data as one line … … 37 37 */ 38 38 public function get(); 39 39 40 40 /** 41 41 * returns the level of the log data … … 45 45 */ 46 46 public function getLevel(); 47 47 48 48 /** 49 49 * returns the target where the log data should go to
