From ba93bd9152d096d29aa968c836d8f74a0cd84b5c Mon Sep 17 00:00:00 2001 From: Alfred Kamanda Date: Wed, 5 Nov 2025 11:03:45 +0300 Subject: [PATCH] add debug logs for the pool data entry --- handlers/application/pools.go | 1 + 1 file changed, 1 insertion(+) diff --git a/handlers/application/pools.go b/handlers/application/pools.go index d4d7242..0bb7060 100644 --- a/handlers/application/pools.go +++ b/handlers/application/pools.go @@ -65,6 +65,7 @@ func (h *MenuHandlers) GetPools(ctx context.Context, sym string, input []byte) ( // Write data entries for key, value := range dataMap { + fmt.Println("writing: ", value, "into: ", key) if err := userStore.WriteEntry(ctx, sessionId, key, []byte(value)); err != nil { logg.ErrorCtxf(ctx, "Failed to write data entry for sessionId: %s", sessionId, "key", key, "error", err) continue