|
@@ -59,12 +59,12 @@ public class LogUtils { // 依据服务编号ID获取服务类型,如果是异
|
|
|
myDbHelper.updateByCondition("delete log_success where serviceId =? and id not in (select id from log_success where serviceId = ? order by id desc limit 100 ) ", null, serviceId,serviceId);
|
|
|
deleteTime = System.currentTimeMillis();
|
|
|
}
|
|
|
- String insertSQL = "INSERT INTO log_success ( success, location, logContent, createtime, serviceId, workId, event, iNDataContent, outDataContent, calculationLocation, dataObjectId) VALUES (?,?,?,?,?,?,?,?,?,?)";
|
|
|
+ String insertSQL = "INSERT INTO log_success ( success, location, logContent, createtime, serviceId, workId, event, iNDataContent, outDataContent, calculationLocation, dataObjectId) VALUES (?,?,?,?,?,?,?,?,?,?,?)";
|
|
|
|
|
|
try {
|
|
|
myDbHelper.updateByCondition(insertSQL,null,logParam.toArray() );
|
|
|
if (MapTools.isNotBlank(inData) && inData.length() > 20480) {
|
|
|
- myDbHelper.updateByCondition("INSERT INTO log_fulldata ( dataObjectId, fullData) VALUES (?,?)",null,inData);
|
|
|
+ myDbHelper.updateByCondition("INSERT INTO log_fulldata ( dataObjectId, fullData) VALUES (?,?)",null,dataObjectId,inData);
|
|
|
}
|
|
|
}catch (Exception e){
|
|
|
System.out.println("日志记录异常"+LogUtils.getException(e));
|