From 9a42effbfe3c9ce562ea2d9d6ce16d28a1e943fa Mon Sep 17 00:00:00 2001 From: Matthew B White Date: Mon, 11 May 2020 15:10:45 +0100 Subject: [PATCH 1/2] [FABCJ-285] Remove incorrect log point Signed-off-by: Matthew B White --- .../hyperledger/fabric/shim/impl/ChaincodeInvocationTask.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/shim/impl/ChaincodeInvocationTask.java b/fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/shim/impl/ChaincodeInvocationTask.java index c79896de..04371553 100644 --- a/fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/shim/impl/ChaincodeInvocationTask.java +++ b/fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/shim/impl/ChaincodeInvocationTask.java @@ -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()) { From 7f72205328dfd010c192d1aac4e97057057586f7 Mon Sep 17 00:00:00 2001 From: Matthew B White Date: Wed, 13 May 2020 09:33:00 +0100 Subject: [PATCH 2/2] force rebuild Signed-off-by: Matthew B White