82a83 > * 'logPriority' => int value of Zend_Log priority to use for logging 96a98 > 'logPriority' => 5, // 5 = Notice: normal but significant condition 413c415,418 < $this->_options['log']->notice("The language '{$locale}' has to be added before it can be used."); --- > $this->_options['log']->log( > "The language '{$locale}' has to be added before it can be used.", > $this->_options['log'] > ); 426c431,434 < $this->_options['log']->notice("No translation for the language '{$locale}' available."); --- > $this->_options['log']->log( > "No translation for the language '{$locale}' available.", > $this->_options['log'] > ); 799c807 < $this->_options['log']->notice($message); --- > $this->_options['log']->log($message, $this->_options['log']);