|
@@ -181,7 +181,7 @@ public class SocketBufferServiceImpl implements SocketBufferService {
|
|
|
try {
|
|
|
statusUpdateService.updateStatus(task, Integer.parseInt(agvNo));
|
|
|
} catch (InterruptedException e) {
|
|
|
- log.error("An exception occurred in the task update,msg,{}",e.getMessage());
|
|
|
+ log.error("An exception occurred in the task update,msg:",e);
|
|
|
}
|
|
|
});
|
|
|
break;
|
|
@@ -218,7 +218,7 @@ public class SocketBufferServiceImpl implements SocketBufferService {
|
|
|
try {
|
|
|
statusUpdateService.updateStatus(task02,Integer.parseInt( agvNo));
|
|
|
} catch (InterruptedException e) {
|
|
|
- log.error("An exception occurred in the task update,msg,{}",e.getMessage());
|
|
|
+ log.error("An exception occurred in the task update,msg:",e);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -246,7 +246,7 @@ public class SocketBufferServiceImpl implements SocketBufferService {
|
|
|
try {
|
|
|
statusUpdateService.confirmAnalysis(task60.getTaskNo(), aciIndex, UNLOAD.getValue(), icarNo);
|
|
|
} catch (InterruptedException e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
+ log.error("卸货确认发生异常,msg:",e);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -269,7 +269,7 @@ public class SocketBufferServiceImpl implements SocketBufferService {
|
|
|
try {
|
|
|
statusUpdateService.confirmAnalysis(task60Pick.getTaskNo(), aciIndexPick, PICKUP.getValue(), icarNo);
|
|
|
} catch (InterruptedException e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
+ log.error("取货确认发生异常,msg:",e);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -286,7 +286,7 @@ public class SocketBufferServiceImpl implements SocketBufferService {
|
|
|
}
|
|
|
// TODO 车辆暂停上报
|
|
|
} catch (Exception e) {
|
|
|
- log.error("车辆暂停反馈错误", e);
|
|
|
+ log.error("车辆暂停反馈错误,msg:", e);
|
|
|
}
|
|
|
break;
|
|
|
case 123:
|
|
@@ -421,7 +421,6 @@ public class SocketBufferServiceImpl implements SocketBufferService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
@Override
|
|
|
public void handleMsgOrderAck(byte[] parameters) {
|
|
|
AmsTask taskBean = new AmsTask();
|