ZF-9014: remove useless code from Zend_Cache_Backend::_loggerSanity()
Description
There are a few useless lines of code in Zend_Cache_Backend::_loggerSanity() since ZF-3875.
try {
/**
* @see Zend_Log
*/
require_once 'Zend/Log.php';
} catch (Zend_Exception $e) {
Zend_Cache::throwException('Logging feature is enabled but the Zend_Log class is not available', $e);
}
Comments
Posted by Jan Pieper (jpieper) on 2010-01-29T12:24:33.000+0000
Attached patch.
Posted by Matthew Weier O'Phinney (matthew) on 2010-02-03T10:20:04.000+0000
Fixed in trunk and 1.10 release branch.