删除调试日志

version1
admin 2 years ago
parent a08ce2fe8b
commit 055a198752

@ -304,7 +304,7 @@ public class IdcServiceImpl implements IdcService {
syncAddTaskStatus(json.getJSONObject("data"),3,success);
} else {
if(json.get("code")!=null&&json.get("data")!=null) {
logger.info("res1-->"+JSON.toJSONString(json));
//logger.info("res1-->"+JSON.toJSONString(json));
syncAddTaskStatus(json.getJSONObject("data"),0,success);
analyMiddle(host,json.getJSONObject("data"),files,false,false);
}
@ -447,8 +447,7 @@ public class IdcServiceImpl implements IdcService {
String filePathSlash = filePath.substring(filePath.length() -1).equals("/") ? "" : fileName.substring(0,1).equals("/") ? "" : "/";
if(!FileUtils.isFileExist(filePath+filePathSlash+fileName))
fileName = "11.jpg";
logger.info(filePath+filePathSlash+fileName);
try {
try {
if(FileUtils.isFileExist(filePath+filePathSlash+fileName)) {
byte[] bytes = FileUtils.readFileByBytes(filePath+filePathSlash+fileName);
os = response.getOutputStream();
@ -711,7 +710,7 @@ public class IdcServiceImpl implements IdcService {
if(isToDB) {
return analyToDB(host,tableName,uniqueColumn,filePathColumn,list,isUpload);
} else {
logger.info("files-->"+tableName);
//logger.info("files-->"+tableName);
return analyToFile(host,filePathColumn,list);
}
} else {
@ -726,11 +725,11 @@ public class IdcServiceImpl implements IdcService {
if(list!=null&&list.size()>0) {
String[] files = new String[list.size()];
logger.info("filePathColumn-->"+filePathColumn);
//logger.info("filePathColumn-->"+filePathColumn);
for(int i=0;i<list.size();i++) {
if(!StringUtils.isEmpty(filePathColumn)) {
files[i] = list.get(i).get(filePathColumn) !=null ? list.get(i).get(filePathColumn).toString() : "";
logger.info("file-->"+files[i]);
//logger.info("file-->"+files[i]);
}
for(int z=0;z<30;z++) {
if(list.get(i).get("data"+z)!=null) {
@ -943,7 +942,7 @@ public class IdcServiceImpl implements IdcService {
String[] str = fileName.split(",");
for(int i=0;i<str.length;i++) {
if(!StringUtils.isEmpty(str[i])) {
logger.info("downloadFile-->"+str[i]);
//logger.info("downloadFile-->"+str[i]);
if(!signleDownloadFile(syncIp,str[i]))
success = false;
}

Loading…
Cancel
Save