Use InfoCtxf instead of TraceCtxf

This commit is contained in:
Alfred Kamanda 2025-06-19 14:17:08 +03:00
parent e803048b13
commit 23f1068402
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -176,7 +176,7 @@ func GetSwapToVoucherData(ctx context.Context, store DataStore, sessionId string
// UpdateSwapToVoucherData updates the active swap to voucher data in the DataStore.
func UpdateSwapToVoucherData(ctx context.Context, store DataStore, sessionId string, data *dataserviceapi.TokenDetails) error {
logg.TraceCtxf(ctx, "UpdateSwapToVoucherData", "data", data)
logg.InfoCtxf(ctx, "UpdateSwapToVoucherData", "data", data)
// Convert TokenDecimals (uint8) to string
tokenDecimalsStr := strconv.FormatUint(uint64(data.TokenDecimals), 10)