Skip to content

Commit

Permalink
Change log level for connection errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer authored and oscarguindzberg committed Dec 20, 2018
1 parent eed7f70 commit 05c6432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/bitcoinj/net/BlockingClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void run() {
runReadLoop(stream, connection);
} catch (Exception e) {
if (!vCloseRequested) {
log.error("Error trying to open/read from connection: {}: {}", serverAddress, e.getMessage());
log.warn("Error trying to open/read from connection: {}: {}", serverAddress, e.getMessage());
connectFuture.setException(e);
}
} finally {
Expand Down

0 comments on commit 05c6432

Please sign in to comment.