diff options
author | Tyler Brownell <tyler@bluefoxstudio.ca> | 2013-07-30 01:06:52 +0200 |
---|---|---|
committer | Tyler Brownell <tyler@bluefoxstudio.ca> | 2013-07-30 01:06:52 +0200 |
commit | d967f7216253d17df0a7154c49303fb560b70e04 (patch) | |
tree | 30886f30b28137d65eb8d29cd1d27a5c995df7d7 /system/libraries/Cache/drivers/Cache_apc.php | |
parent | 277533099194f55fba2c06477ccf57024c73dd61 (diff) |
Cache Log Error Levels
The log messages in the cache drvier's is_supported calls are more suited for the debug level.
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; } |