This commit is contained in:
aozhiwei 2024-08-29 11:17:48 +08:00
parent d3cd8f5f88
commit c5f61f3287

View File

@ -239,6 +239,14 @@ func (this *RechargeApi) internalBuy(c *gin.Context,
f5.RspErr(c, 500, "server internal error")
return
}
f5.GetSysLog().Info("recharge net_id:%d currency_name:%s decimal:%d srcPrice:%d bnPrice:%s calls.len:%d jsonRsp:%s",
netId,
currencyMeta.GetCurrencyName(),
currencyMeta.GetCurrencyDecimal(),
srcPrice,
bnPrice.String(),
len(jsonRspObj.Calls),
q5.EncodeJson(&jsonRspObj));
c.JSON(200, jsonRspObj)
})
}