Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,11 @@ protected ByteString invoke(final ChaincodeMessage message) {
ChaincodeMessage response;
try {
response = messageExchange.exchange(null);
logger.info(() -> "Got response back from the peer" + response);
logger.info(() -> "Got response back from the peer" + response.getTxid());
} catch (final InterruptedException e) {
logger.severe(() -> "Interrupted exchanging messages ");
throw new RuntimeException(String.format("[%-8.8s]InterruptedException received.", txId), e);
}
logger.fine(() -> String.format("[%-8.8s] %s response received.", txId, response.getType()));

// handle response
switch (response.getType()) {
Expand Down