Skip to content

Commit

Permalink
Hide additional logging about peers not connecting
Browse files Browse the repository at this point in the history
  • Loading branch information
mweser committed Oct 13, 2023
1 parent 6d28497 commit 45bf993
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
id 'eclipse'
}

version = "1.0.2"
version = "1.0.3"

dependencies {
api 'org.bouncycastle:bcprov-jdk15to18:1.76'
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/org/bitcoinj/core/PeerGroup.java
Original file line number Diff line number Diff line change
Expand Up @@ -1532,7 +1532,7 @@ protected Peer connectTo(PeerAddress address, boolean incrementMaxConnections, D
InternalUtils.getUninterruptibly(future);
} catch (ExecutionException e) {
Throwable cause = Throwables.getRootCause(e);
log.warn("Failed to connect to " + address + ": " + cause.getMessage());
// log.warn("Failed to connect to " + address + ": " + cause.getMessage());
handlePeerDeath(peer, cause);
return null;
}
Expand Down

0 comments on commit 45bf993

Please sign in to comment.