diff options
author | Greg Aker <greg.aker@ellislab.com> | 2010-09-15 00:20:53 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2010-09-15 00:20:53 +0200 |
commit | a7f5a94d9ecc371a1ee9fb3b5ffe4bfdd90b5e2d (patch) | |
tree | f1602fa491fe27763b356b0cde8760eb4cb3c2a3 /system | |
parent | d2167a01ec5bd134a4138b50d76487caa72245c6 (diff) |
Added a log message in core/output if the cache directory config value was not found.
Diffstat (limited to 'system')
-rw-r--r-- | system/core/Output.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index e25e62197..7d3e2e180 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -346,6 +346,7 @@ class CI_Output { if ( ! is_dir($cache_path) OR ! is_really_writable($cache_path)) { + log_message('error', "Unable to write cache file: ".$cache_path); return; } |