Skip to content

Commit b89c464

Browse files
committed
[FABCJ-285] Remove incorrect log point
Signed-off-by: Matthew B White <whitemat@uk.ibm.com>
1 parent 941696f commit b89c464

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/shim/impl/ChaincodeInvocationTask.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,11 @@ protected ByteString invoke(final ChaincodeMessage message) {
173173
ChaincodeMessage response;
174174
try {
175175
response = messageExchange.exchange(null);
176-
logger.info(() -> "Got response back from the peer" + response);
176+
logger.info(() -> "Got response back from the peer" + response.getTxid());
177177
} catch (final InterruptedException e) {
178178
logger.severe(() -> "Interrupted exchanging messages ");
179179
throw new RuntimeException(String.format("[%-8.8s]InterruptedException received.", txId), e);
180180
}
181-
logger.fine(() -> String.format("[%-8.8s] %s response received.", txId, response.getType()));
182181

183182
// handle response
184183
switch (response.getType()) {

0 commit comments

Comments
 (0)