Changeset 7254
- Timestamp:
- 02/01/08 01:37:38 (9 months ago)
- Files:
-
- branches/1.0/lib/log/sfLogger.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/lib/log/sfLogger.class.php
r3329 r7254 4 4 * This file is part of the symfony package. 5 5 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com> 6 * 6 * 7 7 * For the full copyright and license information, please view the LICENSE 8 8 * file that was distributed with this source code. … … 103 103 $this->level = $level; 104 104 } 105 105 106 106 /** 107 107 * Retrieves current loggers. … … 113 113 return $this->loggers; 114 114 } 115 115 116 116 /** 117 117 * Registers a logger. 118 118 * 119 * @param string Logger name119 * @param object The Logger object 120 120 */ 121 121 public function registerLogger($logger)