Don't depend on err.message for redis errors [#49]

This commit is contained in:
John Crepezzi 2013-11-24 11:54:01 -05:00
parent abb49f2cf3
commit 89909747f1
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ RedisDocumentStore.connect = function(options) {
if (err) {
winston.error(
'error connecting to redis index ' + index,
{ error: err.message }
{ error: err }
);
process.exit(1);
}