From d516e38fd44e186f393bbb05c4e7ca34b323b609 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 16 五月 2023 18:50:52 +0800
Subject: [PATCH] optimize report
---
java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java b/java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java
old mode 100644
new mode 100755
index 250d1f1..897fa36
--- a/java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java
+++ b/java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java
@@ -1,9 +1,11 @@
package com.java110.core.context;
import com.alibaba.fastjson.JSONObject;
-import com.java110.common.constant.ResponseConstant;
-import com.java110.common.exception.InitDataFlowContextException;
+import com.java110.utils.constant.ResponseConstant;
+import com.java110.utils.exception.InitDataFlowContextException;
import com.java110.entity.center.Business;
+import org.slf4j.Logger;
+import com.java110.core.log.LoggerFactory;
import java.util.ArrayList;
import java.util.Date;
@@ -15,6 +17,7 @@
* Created by wuxw on 2018/5/18.
*/
public class BusinessServiceDataFlow extends AbstractDataFlowContext {
+ private final static Logger logger = LoggerFactory.getLogger(BusinessServiceDataFlow.class);
private String bId;
@@ -54,6 +57,7 @@
this.requestHeaders.putAll(headerAll);
}
}catch (Exception e){
+ logger.error("鍒濆鍖栧璞� BusinessServiceDataFlow 澶辫触",e);
throw new InitDataFlowContextException(ResponseConstant.RESULT_PARAM_ERROR,"鍒濆鍖栧璞� BusinessServiceDataFlow 澶辫触 "+reqInfo);
}
return this;
--
Gitblit v1.8.0