From ea0fc4491dd67f79448729eee0d4ad1079e89dd2 Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Tue, 1 Apr 2025 11:12:38 +0300 Subject: [PATCH] removed debug related logs --- handlers/application/menuhandler.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/handlers/application/menuhandler.go b/handlers/application/menuhandler.go index 7ac664c..9199f14 100644 --- a/handlers/application/menuhandler.go +++ b/handlers/application/menuhandler.go @@ -1981,8 +1981,6 @@ func (h *MenuHandlers) ManageVouchers(ctx context.Context, sym string, input []b res.FlagReset = append(res.FlagReset, flag_no_active_voucher) - logg.InfoCtxf(ctx, "Fetched user vouchers", "public_key", string(publicKey), "vouchers", vouchersResp) - // Check if user has an active voucher with proper error handling activeSym, err := userStore.ReadEntry(ctx, sessionId, storedb.DATA_ACTIVE_SYM) if err != nil { @@ -2058,7 +2056,6 @@ func (h *MenuHandlers) ManageVouchers(ctx context.Context, sym string, input []b // Write data entries for key, value := range dataMap { - logg.InfoCtxf(ctx, "Writing data entry for sessionId: %s", sessionId, "key", key, "value", value) 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