Skip to content

Commit 3a66788

Browse files
committed
[FAB-3086] Fix log event formatting
in peer/chaincode/install.go if proposalResponse != nil { logger.Debug("Installed remotely %v", proposalResponse) } should be Debugf Change-Id: Id7c4e3dc5d21ff5fb3e6eab8562dff2f6a4a6042 Signed-off-by: Yacov Manevich <[email protected]>
1 parent a076bba commit 3a66788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

peer/chaincode/install.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func install(chaincodeName string, chaincodeVersion string, cds *pb.ChaincodeDep
7474
}
7575

7676
if proposalResponse != nil {
77-
logger.Debug("Installed remotely %v", proposalResponse)
77+
logger.Debugf("Installed remotely %v", proposalResponse)
7878
}
7979

8080
return nil

0 commit comments

Comments
 (0)