Skip to content

Commit 6ffc99c

Browse files
committed
[FAB-3728] MSPImpl generates a lot of log output
This CR removes a fmt.Printf statement from mspimpl.go which is generating a large amount of log output. Change-Id: I968fbde8186ce339e016682db9619fabe273e06e Signed-off-by: Will Lahti <[email protected]>
1 parent 9a1c9c3 commit 6ffc99c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

msp/mspimpl.go

-1
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,6 @@ func (msp *bccspmsp) getCertificationChainForBCCSPIdentity(id *identity) ([]*x50
714714

715715
func (msp *bccspmsp) getValidationChain(cert *x509.Certificate) ([]*x509.Certificate, error) {
716716
// ask golang to validate the cert for us based on the options that we've built at setup time
717-
fmt.Printf("MSP [%v]", msp)
718717
validationChain, err := cert.Verify(*(msp.opts))
719718
if err != nil {
720719
return nil, fmt.Errorf("The supplied identity is not valid, Verify() returned %s", err)

0 commit comments

Comments
 (0)