summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/libraries/Cache/drivers/Cache_redis.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Cache/drivers/Cache_redis.php b/system/libraries/Cache/drivers/Cache_redis.php
index 194745fe0..f13e4479f 100644
--- a/system/libraries/Cache/drivers/Cache_redis.php
+++ b/system/libraries/Cache/drivers/Cache_redis.php
@@ -211,13 +211,13 @@ class CI_Cache_redis extends CI_Driver
if ( ! $success)
{
- log_message('debug','Redis connection refused. Check the config.');
+ log_message('debug', 'Cache: Redis connection refused. Check the config.');
return FALSE;
}
}
catch (RedisException $e)
{
- log_message('debug','Cache: Redis connection refused ('.$e->getMessage().')');
+ log_message('debug', 'Cache: Redis connection refused ('.$e->getMessage().')');
return FALSE;
}