From 6f2d965b89ad6c8dce9add3ed54a458578b4d0b8 Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Mon, 23 Jun 2025 08:56:37 +0300 Subject: [PATCH] add log for the GetCurrentProfileInfo --- handlers/application/menuhandler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/handlers/application/menuhandler.go b/handlers/application/menuhandler.go index f3dcdfc..3b56665 100644 --- a/handlers/application/menuhandler.go +++ b/handlers/application/menuhandler.go @@ -1082,6 +1082,7 @@ func (h *MenuHandlers) GetCurrentProfileInfo(ctx context.Context, sym string, in parts := strings.SplitN(sm, "_", 2) filename := parts[1] dbKeyStr := "DATA_" + strings.ToUpper(filename) + logg.InfoCtxf(ctx, "GetCurrentProfileInfo", "filename", filename, "dbKeyStr:", dbKeyStr) dbKey, err := storedb.StringToDataTyp(dbKeyStr) if err != nil {