add debug logs for the pool keys
This commit is contained in:
parent
37a1906ed1
commit
5fac27d00e
@ -44,7 +44,10 @@ func GetPoolData(ctx context.Context, store DataStore, sessionId string, input s
|
|||||||
}
|
}
|
||||||
data := make(map[storedb.DataTyp]string)
|
data := make(map[storedb.DataTyp]string)
|
||||||
|
|
||||||
|
fmt.Println("the keys:", keys)
|
||||||
|
|
||||||
for _, key := range keys {
|
for _, key := range keys {
|
||||||
|
fmt.Println("current key:", key)
|
||||||
value, err := store.ReadEntry(ctx, sessionId, key)
|
value, err := store.ReadEntry(ctx, sessionId, key)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("failed to get data key %x: %v", key, err)
|
return nil, fmt.Errorf("failed to get data key %x: %v", key, err)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user