diff --git a/lib/nconf/stores/redis.js b/lib/nconf/stores/redis.js index 9e99760d..cace4b0b 100644 --- a/lib/nconf/stores/redis.js +++ b/lib/nconf/stores/redis.js @@ -35,6 +35,11 @@ var Redis = exports.Redis = function (options) { if (options.auth) { this.redis.auth(options.auth); } + + // Suppress errors from the Redis client + this.redis.on('error', function (err) { + require('eyes').inspect(err); + }); }; //