This commit is contained in:
Matias Alejo Garcia 2014-10-31 18:17:44 -03:00
parent 96c8867762
commit 6e45aca517
2 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ Identity.prototype.retrieveWalletFromStorage = function(walletId, opts, callback
return callback(error); return callback(error);
} }
try { try {
log.debug('## OPENING Wallet:', self.getName(), walletId); log.info('## OPENING Wallet:', walletId);
if (_.isString(walletData)) { if (_.isString(walletData)) {
walletData = JSON.parse(walletData); walletData = JSON.parse(walletData);
} }

View File

@ -868,7 +868,7 @@ Wallet.prototype.netStart = function() {
if (net.started) { if (net.started) {
log.debug('Wallet:' + self.id + ' Wallet networking was ready') log.debug('Wallet:' + self.getName() + ': Wallet networking was ready')
self.emitAndKeepAlive('ready', net.getPeer()); self.emitAndKeepAlive('ready', net.getPeer());
return; return;
} }