@@ -13,6 +13,7 @@ import (
13
13
14
14
vault2 "github.com/hyperledger-labs/fabric-smart-client/platform/common/core/generic/vault"
15
15
driver2 "github.com/hyperledger-labs/fabric-smart-client/platform/common/driver"
16
+ logging2 "github.com/hyperledger-labs/fabric-smart-client/platform/common/services/logging"
16
17
"github.com/hyperledger-labs/fabric-smart-client/platform/common/utils/collections"
17
18
"github.com/hyperledger-labs/fabric-smart-client/platform/fabric"
18
19
"github.com/hyperledger-labs/fabric-smart-client/platform/fabric/core/generic/committer"
@@ -206,7 +207,7 @@ func (m *endorserTxInfoMapper) mapTxInfo(rwSet vault2.ReadWriteSet, txID string)
206
207
txInfos := make (map [driver2.Namespace ]KeyInfo , len (rwSet .WriteSet .Writes ))
207
208
logger .Debugf ("TX [%s] has %d namespaces" , txID , len (rwSet .WriteSet .Writes ))
208
209
for ns , writes := range rwSet .WriteSet .Writes {
209
- logger .Debugf ("TX [%s:%s] has [%d] writes" , txID , ns , len (writes ))
210
+ logger .Debugf ("TX [%s:%s] has [%d] writes: %v " , txID , ns , len ( writes ), logging2 . Keys (writes ))
210
211
for key , value := range writes {
211
212
if slices .ContainsFunc (m .prefixes , func (prefix string ) bool { return strings .HasPrefix (key , prefix ) }) {
212
213
logger .Debugf ("TX [%s:%s] does have key [%s]." , txID , ns , key )
0 commit comments