Skip to content

Commit

Permalink
chore: fix sonar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Grigorov-Georgi committed Feb 25, 2025
1 parent cbb9455 commit f18c797
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ public void onException(Throwable cause) {
connectionManager.closeBeefyStream(stream);
if (cause != null) {
log.log(Level.WARNING, "Beefy Exception: " + cause.getMessage());
cause.printStackTrace();
} else {
log.log(Level.WARNING, "Beefy Exception with unknown cause");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ public void onException(Throwable cause) {
connectionManager.closeBlockAnnounceStream(stream);
if (cause != null) {
log.log(Level.WARNING, "Block Announce Exception: " + cause.getMessage());
cause.printStackTrace();
} else {
log.log(Level.WARNING, "Block Announce Exception with unknown cause");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ public void onException(Throwable cause) {
connectionManager.closeGrandpaStream(stream);
if (cause != null) {
log.log(Level.WARNING, "Grandpa Exception: " + cause.getMessage());
cause.printStackTrace();
} else {
log.log(Level.WARNING, "Grandpa Exception with unknown cause");
}
Expand Down

0 comments on commit f18c797

Please sign in to comment.