Throw exception instead of logging in debug mode.

This commit is contained in:
ADmad 2014-08-03 03:11:19 +05:30
parent 8e40fcf5ef
commit c193ce708a

View file

@ -109,6 +109,7 @@ class CacheHelper extends AppHelper {
* @param string $out output to cache * @param string $out output to cache
* @return string view output * @return string view output
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/cache.html * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/cache.html
* @throws Exception If debug mode is enabled and writing to cache file fails.
*/ */
public function cache($file, $out) { public function cache($file, $out) {
$cacheTime = 0; $cacheTime = 0;
@ -153,6 +154,10 @@ class CacheHelper extends AppHelper {
try { try {
$this->_writeFile($cached, $cacheTime, $useCallbacks); $this->_writeFile($cached, $cacheTime, $useCallbacks);
} catch (Exception $e) { } catch (Exception $e) {
if (Configure::read('debug')) {
throw $e;
}
$message = __d( $message = __d(
'cake_dev', 'cake_dev',
'Unable to write view cache file: "%s" for "%s"', 'Unable to write view cache file: "%s" for "%s"',