Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
Quieten a noisy log line that slows things down in initial sync.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehearn committed Jan 8, 2015
1 parent 001d0d4 commit 87cdbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/main/java/lighthouse/LighthouseBackend.java
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ public void onTransaction(Peer peer, Transaction t) {
}

public void checkForRevocation(Transaction t) {
log.info("Checking {} to see if it's a revocation", t.getHash());
log.debug("Checking {} to see if it's a revocation", t.getHash());
List<LHProtos.Pledge> revoked = whichPledgesAreRevokedBy(t);
if (revoked.isEmpty()) return;
for (ObservableSet<LHProtos.Pledge> pledges : openPledges.values()) {
Expand Down

0 comments on commit 87cdbbe

Please sign in to comment.