diff options
author | Brian Gottier <grahamcrackers72@yahoo.com> | 2012-11-14 16:40:55 +0100 |
---|---|---|
committer | Brian Gottier <grahamcrackers72@yahoo.com> | 2012-11-14 16:40:55 +0100 |
commit | 4a18c9505040f5b0fc1129ec7f167baeae016080 (patch) | |
tree | c1963386ba4e99eafbd97061ad8209cd90b045e1 | |
parent | 51c0b55a235ebcac022d6f5576c209edf98c38fe (diff) |
Changes per narfbg
-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(); |