fix log messages

This commit is contained in:
Gabriel Bazán 2016-10-17 11:15:36 -03:00
commit 6b7a99939e
4 changed files with 7 additions and 7 deletions

View file

@ -76,7 +76,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
});
walletService.getTxNote(wallet, n.txid, function(err, note) {
if (err) $log.debug(gettextCatalog.getString('Could not fetch transaction note'));
if (err) $log.warn('Could not fetch transaction note: ' + err);
$scope.btx.note = note;
});
});