From 93a83a35da4738c3040a1420bc80aa42568d7651 Mon Sep 17 00:00:00 2001 From: John Crepezzi Date: Thu, 27 Sep 2012 11:47:23 -0400 Subject: [PATCH] Logging --- lib/document_stores/redis.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/document_stores/redis.js b/lib/document_stores/redis.js index 91a93d4..e6447f5 100644 --- a/lib/document_stores/redis.js +++ b/lib/document_stores/redis.js @@ -11,6 +11,7 @@ var winston = require('winston'); var RedisDocumentStore = function(options, client) { this.expire = options.expire; if (client) { + winston.info('using predefined redis client'); RedisDocumentStore.client = client; } else if (!RedisDocumentStore.client) { RedisDocumentStore.connect(options);