You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://jira.hyperledger.org/browse/FAB-1681
Some important orderer log messages lacked chainID and certain code
paths lacked logging entirely. As more users are attempting to utilize
the ordering service in more sophisticated ways (such as deploying
chains) enhanced logging will be very beneficial.
Change-Id: If6093428d162cfdba6071f3a9169747510bea93e
Signed-off-by: Jason Yellick <[email protected]>
// If a config item was modified, its LastModified must be set correctly, and it must satisfy the modification policy
222
228
ifisModified {
229
+
logger.Debugf("Proposed configuration item of type %v and key %t on chain %s has been modified", config.Type, config.Key, cm.chainID)
230
+
223
231
ifconfig.LastModified!=seq {
224
232
returnnil, fmt.Errorf("Key %v for type %v was modified, but its LastModified %d does not equal current configtx Sequence %d", config.Key, config.Type, config.LastModified, seq)
0 commit comments