diff options
author | Andrey Andreev <narf@devilix.net> | 2013-07-30 17:00:51 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-07-30 17:00:51 +0200 |
commit | 46cfebaf27ac71b7db38a7f15a7955b243528e7e (patch) | |
tree | 9323ab1502fd8157f74444801454476f9787d48f /system/libraries/Cache/drivers/Cache_apc.php | |
parent | 277533099194f55fba2c06477ccf57024c73dd61 (diff) | |
parent | 530a3daec00186562e7e081ba77173b5ad065935 (diff) |
Merge pull request #2569 from refringe/develop
Cache Log Error Levels
Diffstat (limited to 'system/libraries/Cache/drivers/Cache_apc.php')
-rw-r--r-- | system/libraries/Cache/drivers/Cache_apc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Cache/drivers/Cache_apc.php b/system/libraries/Cache/drivers/Cache_apc.php index 127a220a7..a84e7d2d3 100644 --- a/system/libraries/Cache/drivers/Cache_apc.php +++ b/system/libraries/Cache/drivers/Cache_apc.php @@ -150,7 +150,7 @@ class CI_Cache_apc extends CI_Driver { { if ( ! extension_loaded('apc') OR ! (bool) @ini_get('apc.enabled')) { - log_message('error', 'The APC PHP extension must be loaded to use APC Cache.'); + log_message('debug', 'The APC PHP extension must be loaded to use APC Cache.'); return FALSE; } |