Skip to content

Commit

Permalink
chore: Remove log.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zurcusa committed Sep 18, 2024
1 parent bbd5385 commit 9b2908f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/java/com/limechain/rpc/WsRpcClientImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,7 @@ private void initHandlers() {
});

ws.onOpen(e -> System.out.println("Websocket connection is open."));
ws.onMessage(e -> {
rpcResponses.offerLast(e.getDataAsString());
//TODO RPC_SUPPORT Remove after finalized
System.out.println(rpcResponses.peekLast());
});
ws.onMessage(e -> rpcResponses.offerLast(e.getDataAsString()));
}

/**
Expand Down

0 comments on commit 9b2908f

Please sign in to comment.