From ed4d08f48b12496374256523f98331b9677ee7cc Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Fri, 31 Oct 2014 16:36:12 -0300 Subject: [PATCH] add err to log --- js/models/Identity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/Identity.js b/js/models/Identity.js index 97832d96f..abae78376 100644 --- a/js/models/Identity.js +++ b/js/models/Identity.js @@ -195,7 +195,7 @@ Identity.prototype.storeWallet = function(wallet, cb) { this.storage.setItem(key, val, function(err) { if (err) { - log.debug('Wallet:' + wallet.getName() + ' couldnt be stored'); + log.debug('Wallet:' + wallet.getName() + ' couldnt be stored:', err); } if (cb) return cb(err);