change log level

This commit is contained in:
Matias Alejo Garcia 2016-02-23 13:54:26 -03:00
parent 3c02a0bf89
commit 52570d3d40
1 changed files with 1 additions and 1 deletions

View File

@ -1161,7 +1161,7 @@ WalletService.prototype._sampleFeeLevels = function(network, points, cb) {
var levels = _.zipObject(_.map(points, function(p) {
var feePerKb = _.isObject(result) ? +result[p] : -1;
if (feePerKb < 0) {
log.warn('Could not compute fee estimation (nbBlocks=' + p + ')');
log.info('Could not compute fee estimation (nbBlocks=' + p + ')');
}
return [p, Utils.strip(feePerKb * 1e8)];
}));