- Timestamp:
- 01/22/08 17:45:43 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/log/stubFileLogAppender.php
r1230 r1281 11 11 * A log appenders that writes log data to files. 12 12 * 13 * This log appender writes the log data into a logfile using the error_log() 14 * function of PHP. The logfile name will be [target]-[Y-m-d].log where target 13 * This log appender writes the log data into a logfile using the error_log() 14 * function of PHP. The logfile name will be [target]-[Y-m-d].log where target 15 15 * is the return value of stubLogData::getTarget(). 16 16 * … … 79 79 * set the logpath 80 80 * 81 * The log director may have placeholders: {Y} will be replaced with the 81 * The log director may have placeholders: {Y} will be replaced with the 82 82 * current year, {M} will be replaced with the current month, e.g. 83 83 * /path/to/logs/{Y}/{M} would become /path/to/logs/2007/01. … … 133 133 * append the log data to the log target 134 134 * 135 * The basename of the logfile will be [target]-[Y-m-d].log where target 135 * The basename of the logfile will be [target]-[Y-m-d].log where target 136 136 * is the return value of stubLogData::getTarget(). 137 137 *
