From 88843ba11fcd519d08de51a7ac3fc11d529a614b Mon Sep 17 00:00:00 2001 From: Simon Wex Date: Mon, 3 Feb 2014 12:11:04 -0800 Subject: [PATCH] Updating mapping error text. Error is likely caused by ES not running. --- lib/models/make.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/models/make.js b/lib/models/make.js index bbfc064..738e6cb 100644 --- a/lib/models/make.js +++ b/lib/models/make.js @@ -158,7 +158,7 @@ module.exports = function( environment, mongoInstance ) { Make.createMapping(function( err, mapping ) { if ( err ) { - console.log( "failed to create mapping", err.toString() ); + console.log( "Failed to create mapping. Is ElasticSearch Running?\n", err.toString() ); } });