Browse Source

2.0 修改版本-日志变更

pms 2 years ago
parent
commit
55ff8ff46c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mainFactory/src/main/java/org/bfkj/utils/LogUtils.java

+ 2 - 2
mainFactory/src/main/java/org/bfkj/utils/LogUtils.java

@@ -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));