diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/database/DB_cache.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php index d023db979..fd01dc2d8 100644 --- a/system/database/DB_cache.php +++ b/system/database/DB_cache.php @@ -97,7 +97,7 @@ class CI_DB_Cache { if ( ! is_dir($path)) { - log_message('debug', 'Cache Path Error: '.$path); + log_message('debug', 'DB cache path error: '.$path); // If the path is wrong we'll turn off caching return $this->db->cache_off(); @@ -105,7 +105,7 @@ class CI_DB_Cache { if ( ! is_really_writable($path)) { - log_message('debug', 'Cache Dir Not Writable: '.$path); + log_message('debug', 'DB cache dir not writable: '.$path); // If the path is not really writable we'll turn off caching return $this->db->cache_off(); |