From 77df884adcad3ccc3530d03661d5ee1184864052 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Mon, 25 Aug 2014 12:40:51 -0300 Subject: [PATCH] fix logging --- lib/TransactionDb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/TransactionDb.js b/lib/TransactionDb.js index ef50115..aa11bc6 100644 --- a/lib/TransactionDb.js +++ b/lib/TransactionDb.js @@ -192,7 +192,7 @@ TransactionDb.prototype._fillOutpoints = function(txInfo, cb) { async.eachLimit(txInfo.vin, CONCURRENCY, function(i, c_in) { self.fromTxIdN(i.txid, i.vout, function(err, ret) { if (!ret || !ret.addr || !ret.valueSat) { - inf('Could not get TXouts in %s,%d from %s ', i.txid, i.vout, txInfo.txid); + logger.info('Could not get TXouts in %s,%d from %s ', i.txid, i.vout, txInfo.txid); if (ret) i.unconfirmedInput = ret.unconfirmedInput; incompleteInputs = 1; return c_in(); // error not scalated