|
|
@@ -24,7 +24,7 @@ public class CoreService implements RPCRequestIFace.Iface {
|
|
|
@Override
|
|
|
public Result deliveryRecharge(int uid, String goodsId, String openId, String orderId, long orderTime, int amount) throws InvalidOperException, TException {
|
|
|
try {
|
|
|
- LOGGER.info("deliveryRecharge start",uid );
|
|
|
+ LOGGER.info("deliveryRecharge start: {}",uid );
|
|
|
return BuyGoodsLogic.sendGoods(uid, goodsId, openId, orderId, orderTime, amount,false, null);
|
|
|
} catch (Exception e) {
|
|
|
User user = UserManager.getUserInMem(uid);
|
|
|
@@ -33,6 +33,7 @@ public class CoreService implements RPCRequestIFace.Iface {
|
|
|
if(user == null){
|
|
|
LOGGER.info("the uid={} not found",uid );
|
|
|
}
|
|
|
+ LOGGER.error("Exception details:", e);
|
|
|
result.setResultMsg("server exce");
|
|
|
// KtEventUtils.onKtEvent(user, ParamEventBean.UserPayEvent,goodsId,orderId,result.getResultCode(),amount);
|
|
|
return result;
|