|
@@ -5,6 +5,8 @@ import org.bfkj.config.AppConfig;
|
|
|
import org.bfkj.config.ElasticsearchConfig;
|
|
|
import org.bfkj.config.SpringContextApplication;
|
|
|
import org.bfkj.protocol.ElasticHandler;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
@@ -15,11 +17,26 @@ public class LogUtils { // 依据服务编号ID获取服务类型,如果是异
|
|
|
public static Map<String, List<Object>> logErrorMapList = new HashMap<>();
|
|
|
public static Map<String, List<Object>> logSuccessMapList = new HashMap<>();
|
|
|
public static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+
|
|
|
+ private static final Logger logger = LoggerFactory.getLogger(LogUtils.class);
|
|
|
public static void log(String location, String success, Object calculationLocation, String logContent, String serviceId, Object iNDataContent, String dataObjectId, Object OutDataContent, Object event) {
|
|
|
ThreadPoolTaskExecutor threadPoolTaskExecutor = SpringContextApplication.getBean("ThreadPoolTaskExecutor");
|
|
|
threadPoolTaskExecutor.submit(() ->
|
|
|
logWrite(location, success, calculationLocation, logContent, serviceId, iNDataContent, dataObjectId, OutDataContent, event)
|
|
|
);
|
|
|
+ threadPoolTaskExecutor.submit(() ->
|
|
|
+ logger.info("""
|
|
|
+ location: {};
|
|
|
+ result: {};
|
|
|
+ calculation location: {};
|
|
|
+ content: {};
|
|
|
+ service id: {};
|
|
|
+ input data content: {};
|
|
|
+ data object id: {};
|
|
|
+ output data content: {};
|
|
|
+ event: {}
|
|
|
+ """,location,success,calculationLocation,logContent,serviceId,iNDataContent,dataObjectId,OutDataContent,event)
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
public static void logWrite(String location, String success, Object calculationLocation, String logContent, String serviceId, Object iNDataContent, String dataObjectId, Object OutDataContent, Object event) {
|