Changeset 147
- Timestamp:
- 01/24/07 19:11:48 (2 years ago)
- Files:
-
- trunk/config/xml/logging.xml (added)
- trunk/docroot/logging.php (added)
- trunk/src/main/php/net/stubbles/util/log/stubFileLogAppender.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/util/log/stubLoggerXJConfFactory.php (added)
- trunk/src/main/php/net/stubbles/util/xjconf (added)
- trunk/src/main/php/net/stubbles/util/xjconf/stubConfigXJConfExtension.php (added)
- trunk/src/main/resources/xjconf/logging.xml (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/log/stubFileLogAppender.php
r146 r147 32 32 /** 33 33 * constructor 34 * 35 * @param string $logDir the directory to write the logfiles into 36 */ 37 public function __construct($logDir) 38 { 39 $this->setLogDir($logDir); 40 } 41 42 /** 43 * set the logpath 34 44 * 35 45 * The log director may have placeholders: {Y} will be replaced with the … … 37 47 * /path/to/logs/{Y}/{M} would become /path/to/logs/2007/01. 38 48 * 39 * @param string $logDir the directory to write the logfiles into49 * @param string $logDir 40 50 */ 41 public function __construct($logDir)51 public function setLogDir($logDir) 42 52 { 43 53 $this->logDir = $logDir;
