From be86757ee8a099d813967a19e8df6adaddcb8574 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 23 Oct 2016 03:17:18 -0700 Subject: [PATCH] walletdb: log level. --- lib/wallet/walletdb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet/walletdb.js b/lib/wallet/walletdb.js index bf31a2ef..75447446 100644 --- a/lib/wallet/walletdb.js +++ b/lib/wallet/walletdb.js @@ -1736,7 +1736,7 @@ WalletDB.prototype._addTX = co(function* addTX(tx, block) { assert(wallet); if (yield wallet.add(tx, block)) { - this.logger.debug( + this.logger.info( 'Added transaction to wallet: %s (%d).', wallet.id, wid); result = true;