From 5bc9e499410058238933d1ba559f05e22ae6579c Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Mon, 13 Feb 2012 20:47:52 +0100 Subject: [PATCH] Lower the level of a spammy log line. --- src/com/google/bitcoin/core/Wallet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/google/bitcoin/core/Wallet.java b/src/com/google/bitcoin/core/Wallet.java index 84a3cf310..c7f511145 100644 --- a/src/com/google/bitcoin/core/Wallet.java +++ b/src/com/google/bitcoin/core/Wallet.java @@ -323,7 +323,7 @@ public class Wallet implements Serializable { // - Send us coins // - Spend our coins if (!isTransactionRelevant(tx, true)) { - log.info("Received tx that isn't relevant to this wallet, discarding."); + log.debug("Received tx that isn't relevant to this wallet, discarding."); return; }