Skip to content

Commit bf307fa

Browse files
committed
Adjust mspimpl.go/Validate log level from Inf to Dbg
When the ordering service receives invocation requests, and is configured at logging severity level of INFO, all it prints is MSP <MSP.name> validating identity. This is inconsistent with the rest of the system. Either more information needs to be printed at INFO, or none at all. Hence I am changing this to Debugf. Change-Id: If9bf37c29d44a7c21abc6561022db1bd33905304 Signed-off-by: Yacov Manevich <[email protected]>
1 parent a785a4c commit bf307fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msp/mspimpl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ func (msp *bccspmsp) GetSigningIdentity(identifier *IdentityIdentifier) (Signing
375375
// nil in case the identity is valid or an
376376
// error otherwise
377377
func (msp *bccspmsp) Validate(id Identity) error {
378-
mspLogger.Infof("MSP %s validating identity", msp.name)
378+
mspLogger.Debugf("MSP %s validating identity", msp.name)
379379

380380
switch id := id.(type) {
381381
// If this identity is of this specific type,

0 commit comments

Comments
 (0)