Changeset 2793
- Timestamp:
- 11/23/06 20:42:34 (2 years ago)
- Files:
-
- trunk/lib/action/sfComponent.class.php (modified) (1 diff)
- trunk/lib/helper/DebugHelper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/action/sfComponent.class.php
r2522 r2793 95 95 if (sfConfig::get('sf_logging_active')) 96 96 { 97 return $this->context->getLogger()->log($message, constant('SF_ PEAR_LOG_'.strtoupper($priority)));97 return $this->context->getLogger()->log($message, constant('SF_LOG_'.strtoupper($priority))); 98 98 } 99 99 } trunk/lib/helper/DebugHelper.php
r1458 r2793 13 13 if (sfConfig::get('sf_logging_active')) 14 14 { 15 sfContext::getInstance()->getLogger()->log($message, constant('SF_ PEAR_LOG_'.strtoupper($priority)));15 sfContext::getInstance()->getLogger()->log($message, constant('SF_LOG_'.strtoupper($priority))); 16 16 } 17 17 }