Commit 6f57bfb2 张东亮
2 个父辈 012d3222 92368255
正在显示 47 个修改的文件 包含 304 行增加2837 行删除
......@@ -40,7 +40,7 @@
<HintPath>..\AgvClient\bin\Debug\AsaPL.AgvClient.dll</HintPath>
</Reference>
<Reference Include="log4net">
<HintPath>..\..\RC1250-FeederLineClient\dll\log4net.dll</HintPath>
<HintPath>..\..\..\..\DLL\log4net.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=3.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
......
......@@ -262,7 +262,7 @@ namespace BLL
string server = GetAddr(Addr_updateDeviceAlarmMsg, paramMap);
DateTime startTime = DateTime.Now;
string resultStr = HttpHelper.Post(server, "");
Common.log.Debug("【" + server + "】【" + resultStr + "】");
Common.log.Debug("异常看板【" + server + "】【" + resultStr + "】");
RfidData data = JsonHelper.DeserializeJsonToObject<RfidData>(resultStr);
......
......@@ -37,7 +37,7 @@ namespace BLL
/// </summary>
public AgvServer()
{
_client = new List<Client>();
}
/// <summary>
......@@ -51,12 +51,11 @@ namespace BLL
_server = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
_server.Bind(localEP);
_server.Listen(100);
Common.LogInfo("Server Start");
Common.log.Info("Server Start");
_loop = true;
_client = new List<Client>();
tListenClient = new Thread(new ThreadStart(ListenClient));
tListenClient.Start();
Thread.Sleep(30000);
tPingClient = new Thread(new ThreadStart(KeepLiveClient));
tPingClient.Start();
}
......@@ -205,12 +204,28 @@ namespace BLL
private void KeepLiveClient()
{
int n;
while (_loop)
{
Thread.Sleep(30000);
n = 0;
while (n < 5000) //所有产线间隔
{
Thread.Sleep(50);
n += 50;
if (!_loop) return;
}
foreach (ClientNode clientNode in Common.nodeInfo)
{
Thread.Sleep(3000);
n = 0;
while (n < 300) //每条产线间隔
{
Thread.Sleep(50);
n += 50;
if (!_loop) return;
}
int idx = FindClient(clientNode.IP);
if (idx == -1)
{
......@@ -539,6 +554,8 @@ namespace BLL
private int FindClient(string ip)
{
int index = -1;
if (_client == null) return index;
try
{
foreach (Client item in _client)
......
......@@ -16,165 +16,161 @@ namespace AGVControl
public static class SettingString
{
public static int AGVCNT = 6;
public static string Move = "Move";
public static string MoveStandby = "MoveStandby";
public static string CheckShelf = "CheckShelf";
public static string MoveDoorDToC = "MoveDoorDToC";
public static string MoveDoorCToD = "MoveDoorCToD";
public static string C4_DOOR_Name = "F1";
public static string D4_DOOR_Name = "F2";
public static string Standby_Name_Prefix = "";
public static string Charge_Name_Prefix = "I";
public static string RandomCharge_IP1 = "10.85.199.80";
public static string RandomCharge_IP2 = "10.85.199.81";
public static string FileName_AGV= "AgvName.csv";
public static string FileName_AgvMission = "AgvMission.csv";
public static string FileName_AgvProductionLine = "AgvProductionLine.csv";
public static string FileName_tempData = "tempData.ini";
public static string IsUse = "IsUse";
public static string RFID = "RFID";
public static string EmptyShelfCnt = "EmptyShelfCnt";
public const int AGVCNT = 6;
public const string Move = "Move";
public const string MoveStandby = "MoveStandby";
public const string CheckShelf = "CheckShelf";
public const string MoveDoorDToC = "MoveDoorDToC";
public const string MoveDoorCToD = "MoveDoorCToD";
public const string C4_DOOR_Name = "F1";
public const string D4_DOOR_Name = "F2";
public const string Standby_Name_Prefix = "";
public const string Charge_Name_Prefix = "I";
public const string RandomCharge_IP1 = "10.85.199.80";
public const string RandomCharge_IP2 = "10.85.199.81";
public const string FileName_AGV= "AgvName.csv";
public const string FileName_AgvMission = "AgvMission.csv";
public const string FileName_AgvProductionLine = "AgvProductionLine.csv";
public const string FileName_tempData = "tempData.ini";
public const string IsUse = "IsUse";
public const string RFID = "RFID";
public const string EmptyShelfCnt = "EmptyShelfCnt";
/// <summary>
/// 去4C的3辆车IP
/// </summary>
public static string C4_AGV_IPs = "10.85.199.80,10.85.199.81,10.85.199.71";
public const string C4_AGV_IPs = "10.85.199.80,10.85.199.81,10.85.199.71";
/// <summary>
/// 上料区
/// </summary>
public static string A6 = "A6";
public const string A6 = "A6";
/// <summary>
/// 下料区
/// </summary>
public static string A5 = "A5";
public const string A5 = "A5";
/// <summary>
/// 4D 1线
/// </summary>
public static string E1 = "E1";
public const string E1 = "E1";
/// <summary>
/// 4D 2线
/// </summary>
public static string E2 = "E2";
public const string E2 = "E2";
/// <summary>
/// 4D 3线
/// </summary>
public static string E3 = "E3";
public const string E3 = "E3";
/// <summary>
/// 4D 4线
/// </summary>
public static string E4 = "E4";
public const string E4 = "E4";
/// <summary>
/// 4D 5线
/// </summary>
public static string E5 = "E5";
public const string E5 = "E5";
/// <summary>
/// 4D 6线
/// </summary>
public static string E6 = "E6";
public const string E6 = "E6";
/// <summary>
/// 4D 8线
/// </summary>
public static string E8 = "E8";
public const string E8 = "E8";
/// <summary>
/// 4D 9线
/// </summary>
public static string E9 = "E9";
public const string E9 = "E9";
/// <summary>
/// 4D 10线
/// </summary>
public static string E10 = "E10";
public const string E10 = "E10";
/// <summary>
/// 4D 11线
/// </summary>
public static string E11 = "E11";
public const string E11 = "E11";
/// <summary>
/// 4D 12线
/// </summary>
public static string E12 = "E12";
public const string E12 = "E12";
/// <summary>
/// 4D 14线
/// </summary>
public static string E14 = "E14";
public const string E14 = "E14";
/// <summary>
/// 4D 15线
/// </summary>
public static string E15 = "E15";
public const string E15 = "E15";
/// <summary>
/// 4D 16线
/// </summary>
public static string E16 = "E16";
public const string E16 = "E16";
/// <summary>
/// 4D FeederIn
/// </summary>
public static string E21 = "E21";
public const string E21 = "E21";
/// <summary>
/// 4D FeederOut
/// </summary>
public static string E22 = "E22";
public const string E22 = "E22";
/// <summary>
/// 4C 1线
/// </summary>
public static string G1 = "G1";
public const string G1 = "G1";
/// <summary>
/// 4C 2线
/// </summary>
public static string G2 = "G2";
public const string G2 = "G2";
/// <summary>
/// 4C 3线
/// </summary>
public static string G3 = "G3";
public const string G3 = "G3";
/// <summary>
/// 4C 4线
/// </summary>
public static string G4 = "G4";
public const string G4 = "G4";
/// <summary>
/// 4C 5线
/// </summary>
public static string G5 = "G5";
public const string G5 = "G5";
/// <summary>
/// 4C 6线
/// </summary>
public static string G6 = "G6";
public const string G6 = "G6";
/// <summary>
/// 4C 7线
/// </summary>
public static string G7 = "G7";
public const string G7 = "G7";
/// <summary>
/// 4C 8线
/// </summary>
public static string G8 = "G8";
public const string G8 = "G8";
/// <summary>
/// 4C 9线
/// </summary>
public static string G9 = "G9";
public const string G9 = "G9";
/// <summary>
/// 4C 10线
/// </summary>
public static string G10 = "G10";
public const string G10 = "G10";
/// <summary>
/// 4C 14线
/// </summary>
public static string G14 = "G14";
public const string G14 = "G14";
/// <summary>
/// 4C 15线
/// </summary>
public static string G15 = "G15";
public const string G15 = "G15";
/// <summary>
/// 4C 16线
/// </summary>
public static string G16 = "G16";
public const string G16 = "G16";
/// <summary>
/// 4C FeederIn
/// </summary>
public static string G21 = "G21";
public const string G21 = "G21";
/// <summary>
/// 4C FeederOut
/// </summary>
public static string G22 = "G22";
public const string G22 = "G22";
}
......@@ -884,6 +880,8 @@ namespace AGVControl
public static void LogInfo(string text, bool isShow = true)
{
if (logTextBox == null) return;
if (logTextBox.InvokeRequired)
{
logTextBox.Invoke(new Action(() => LogInfo(text, isShow)));
......
......@@ -14,7 +14,6 @@ namespace BLL
{
public class Control
{
private bool loop;
//private int areaC_Index;
private System.Timers.Timer AgvCallTimer;
private System.Timers.Timer AgvStateTimer;
......@@ -26,64 +25,75 @@ namespace BLL
public event AgvChangedEvent AgvChanged;
public event AgvChangedEvent AgvOnline;
public event AgvMissionEvent AgvMissionChanged;
public Control()
{
AgvCallTimer = new System.Timers.Timer();
AgvCallTimer.Interval = 300;
AgvCallTimer.AutoReset = true;
AgvCallTimer.Enabled = false;
AgvCallTimer = new System.Timers.Timer
{
Interval = 300,
AutoReset = false,
Enabled = false
};
AgvCallTimer.Elapsed += AgvCallTimer_Elapsed;
AgvStateTimer = new System.Timers.Timer();
AgvStateTimer.Interval = 300;
AgvStateTimer.AutoReset = true;
AgvStateTimer.Enabled = false;
AgvStateTimer = new System.Timers.Timer
{
Interval = 300,
AutoReset = false,
Enabled = false
};
AgvStateTimer.Elapsed += AgvStateTimer_Elapsed;
}
public void Start()
{
AgvCallTimer.Enabled = true;
AgvStateTimer.Enabled = true;
//AgvCallTimer.Enabled = true;
//AgvStateTimer.Enabled = true;
AgvCallTimer.Start();
AgvStateTimer.Start();
}
public void Stop()
{
loop = false;
AgvCallTimer.Enabled = false;
AgvStateTimer.Enabled = false;
//AgvCallTimer.Enabled = false;
//AgvStateTimer.Enabled = false;
AgvCallTimer.Stop();
AgvStateTimer.Stop();
}
private bool AgvStateInProcess = false;
//private bool AgvStateInProcess = false;
private eAGVState preAGVState = eAGVState.None;
private void AgvStateTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
bool rtn;
if (AgvStateInProcess) return;
AgvStateInProcess = true;
//if (AgvStateInProcess) return;
//AgvStateInProcess = true;
//上报异常
bool isAlarm = false;
List<AlarmMsg> msglist = new List<AlarmMsg>();
for (int j=0;j<Common.nodeInfo.Count;j++)
for (int j = 0; j < Common.nodeInfo.Count; j++)
{
if(!Common.nodeInfo[j].Online)
if (!Common.nodeInfo[j].Online)
{
isAlarm = true;
msglist.Add(new AlarmMsg(Common.nodeInfo[j].AliceName, "agv." + Common.nodeInfo[j].Name + ".OnLine", "接驳台状态:离线"));
}
}
Common.log.Debug("上报异常");
for (int i = 0; i < Common.agvInfo.Count; i++)
{
if (!CheckOnline(i)) continue;
if (!loop) break;
//获取AGV状态
rtn = Common.mir.Get_State(Common.agvInfo[i], out eAGVState stateID, out string stateText, out int battery, out string mission_text, out Agv_Info.clsPosition position);
Common.log.Debug("获取AGV状态");
Thread.Sleep(50);
Common.mir.Get_IO_Status(Common.agvInfo[i], out bool[] input, out bool[] output);
Common.log.Debug("获取IO状态");
bool change = false;
if (rtn) change = Common.agvInfo[i].SetState(stateID, stateText, battery, mission_text, position);
......@@ -162,7 +172,7 @@ namespace BLL
}
if (isAlarm)
BLL.AGVManager.updateDeviceAlarmMsg(msglist);
AgvStateInProcess = false;
//AgvStateInProcess = false;
}
/// <summary>
......@@ -239,7 +249,11 @@ namespace BLL
bool rtn = Common.mir.CheckIP(Common.agvInfo[idx].IP);
if (rtn)
{
if (!Common.agvInfo[idx].IsCon)
if (Common.agvInfo[idx].IsCon)
{
Common.log.Debug(Common.agvInfo[idx].Name + " Online");
}
else
{
Common.agvInfo[idx].IsCon = true;
Common.LogInfo(Common.agvInfo[idx].Name + " Online");
......@@ -256,6 +270,10 @@ namespace BLL
AgvOnline?.Invoke(idx);
AgvChanged?.Invoke(idx);
}
else
{
Common.log.Debug(Common.agvInfo[idx].Name + " Offline");
}
}
return rtn;
}
......
......@@ -164,16 +164,13 @@ namespace BLL
{
try
{
if (_serviceHost.State != CommunicationState.Closed)//判断服务是否关闭
{
if (_serviceHost != null)//判断服务是否关闭
_serviceHost.Close();//关闭服务
}
//_serviceHost.Close();
AGVControl.Common.LogInfo("Web服务已关闭");
Common.log.Info("Web服务已关闭");
}
catch (Exception ex)
{
AGVControl.Common.log.Error("Close", ex);
Common.log.Error("Close", ex);
}
}
......
......@@ -539,7 +539,7 @@ namespace BLL
bool rtn = System.Text.RegularExpressions.Regex.IsMatch(ip, pattern);
if (!rtn)
{
Common.LogInfo("非法的IP地址" + ip);
Common.log.Info("非法的IP地址" + ip);
return false;
}
......@@ -551,7 +551,7 @@ namespace BLL
ping.Dispose();
if (result.Status != System.Net.NetworkInformation.IPStatus.Success)
{
Common.log.Debug("Ping " + ip + " 请求没有响应");
Common.log.Info("Ping " + ip + " 请求没有响应");
return false;
}
return true;
......
......@@ -68,6 +68,9 @@
this.tabPage2 = new System.Windows.Forms.TabPage();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.TxtLog = new System.Windows.Forms.TextBox();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.lblVMIGetBoxDestInfo = new System.Windows.Forms.Label();
this.lblGetRack = new System.Windows.Forms.Label();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.button1 = new System.Windows.Forms.Button();
this.btnSetRFID = new System.Windows.Forms.Button();
......@@ -103,9 +106,6 @@
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.lblWarnMsg = new System.Windows.Forms.Label();
this.lblMsg = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.lblVMIGetBoxDestInfo = new System.Windows.Forms.Label();
this.lblGetRack = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.DgvAgv)).BeginInit();
this.tableLayoutPanel3.SuspendLayout();
this.tabControl1.SuspendLayout();
......@@ -116,10 +116,10 @@
((System.ComponentModel.ISupportInitialize)(this.dgvLineMission)).BeginInit();
this.tabPage2.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.tabPage3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// DgvAgv
......@@ -145,14 +145,13 @@
this.Column11,
this.Column17});
this.DgvAgv.Dock = System.Windows.Forms.DockStyle.Fill;
this.DgvAgv.Location = new System.Drawing.Point(4, 4);
this.DgvAgv.Margin = new System.Windows.Forms.Padding(4);
this.DgvAgv.Location = new System.Drawing.Point(3, 3);
this.DgvAgv.Name = "DgvAgv";
this.DgvAgv.ReadOnly = true;
this.DgvAgv.RowHeadersVisible = false;
this.DgvAgv.RowHeadersWidth = 51;
this.DgvAgv.RowTemplate.Height = 23;
this.DgvAgv.Size = new System.Drawing.Size(1738, 168);
this.DgvAgv.Size = new System.Drawing.Size(1307, 143);
this.DgvAgv.TabIndex = 3;
this.DgvAgv.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgvAgv_CellClick);
//
......@@ -284,12 +283,13 @@
this.tableLayoutPanel3.Controls.Add(this.tableLayoutPanel4, 0, 1);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 3;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 22.72727F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 9.090909F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 68.18182F));
this.tableLayoutPanel3.Size = new System.Drawing.Size(1746, 776);
this.tableLayoutPanel3.Size = new System.Drawing.Size(1313, 656);
this.tableLayoutPanel3.TabIndex = 7;
//
// tabControl1
......@@ -298,21 +298,19 @@
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(4, 250);
this.tabControl1.Margin = new System.Windows.Forms.Padding(4);
this.tabControl1.Location = new System.Drawing.Point(3, 211);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(1738, 522);
this.tabControl1.Size = new System.Drawing.Size(1307, 442);
this.tabControl1.TabIndex = 7;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.tableLayoutPanel2);
this.tabPage1.Location = new System.Drawing.Point(4, 25);
this.tabPage1.Margin = new System.Windows.Forms.Padding(4);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(4);
this.tabPage1.Size = new System.Drawing.Size(1730, 493);
this.tabPage1.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage1.Size = new System.Drawing.Size(1299, 416);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "节点状态&产线任务";
this.tabPage1.UseVisualStyleBackColor = true;
......@@ -325,11 +323,12 @@
this.tableLayoutPanel2.Controls.Add(this.DgvNode, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.groupBox1, 1, 0);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(4, 4);
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(1722, 485);
this.tableLayoutPanel2.Size = new System.Drawing.Size(1293, 410);
this.tableLayoutPanel2.TabIndex = 34;
//
// DgvNode
......@@ -350,14 +349,13 @@
this.Column16,
this.Column15});
this.DgvNode.Dock = System.Windows.Forms.DockStyle.Fill;
this.DgvNode.Location = new System.Drawing.Point(4, 4);
this.DgvNode.Margin = new System.Windows.Forms.Padding(4);
this.DgvNode.Location = new System.Drawing.Point(3, 3);
this.DgvNode.Name = "DgvNode";
this.DgvNode.ReadOnly = true;
this.DgvNode.RowHeadersVisible = false;
this.DgvNode.RowHeadersWidth = 50;
this.DgvNode.RowTemplate.Height = 23;
this.DgvNode.Size = new System.Drawing.Size(1196, 477);
this.DgvNode.Size = new System.Drawing.Size(898, 404);
this.DgvNode.TabIndex = 1;
this.DgvNode.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgvNode_CellClick);
//
......@@ -446,18 +444,21 @@
this.groupBox1.Controls.Add(this.btnDeleteMission);
this.groupBox1.Controls.Add(this.dgvLineMission);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox1.Location = new System.Drawing.Point(1207, 3);
this.groupBox1.Location = new System.Drawing.Point(906, 2);
this.groupBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(512, 479);
this.groupBox1.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.groupBox1.Size = new System.Drawing.Size(385, 406);
this.groupBox1.TabIndex = 33;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "产线任务";
//
// btnAddMission
//
this.btnAddMission.Location = new System.Drawing.Point(395, 275);
this.btnAddMission.Location = new System.Drawing.Point(296, 220);
this.btnAddMission.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnAddMission.Name = "btnAddMission";
this.btnAddMission.Size = new System.Drawing.Size(100, 48);
this.btnAddMission.Size = new System.Drawing.Size(75, 38);
this.btnAddMission.TabIndex = 39;
this.btnAddMission.Text = "添加任务";
this.btnAddMission.UseVisualStyleBackColor = true;
......@@ -466,16 +467,18 @@
// cmbBoxLineName
//
this.cmbBoxLineName.FormattingEnabled = true;
this.cmbBoxLineName.Location = new System.Drawing.Point(390, 101);
this.cmbBoxLineName.Location = new System.Drawing.Point(292, 81);
this.cmbBoxLineName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.cmbBoxLineName.Name = "cmbBoxLineName";
this.cmbBoxLineName.Size = new System.Drawing.Size(122, 23);
this.cmbBoxLineName.Size = new System.Drawing.Size(92, 20);
this.cmbBoxLineName.TabIndex = 38;
//
// btnDeleteMission
//
this.btnDeleteMission.Location = new System.Drawing.Point(395, 175);
this.btnDeleteMission.Location = new System.Drawing.Point(296, 140);
this.btnDeleteMission.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnDeleteMission.Name = "btnDeleteMission";
this.btnDeleteMission.Size = new System.Drawing.Size(100, 48);
this.btnDeleteMission.Size = new System.Drawing.Size(75, 38);
this.btnDeleteMission.TabIndex = 35;
this.btnDeleteMission.Text = "删除任务";
this.btnDeleteMission.UseVisualStyleBackColor = true;
......@@ -489,13 +492,13 @@
this.Column24,
this.Column8});
this.dgvLineMission.Dock = System.Windows.Forms.DockStyle.Left;
this.dgvLineMission.Location = new System.Drawing.Point(3, 21);
this.dgvLineMission.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.dgvLineMission.Location = new System.Drawing.Point(2, 16);
this.dgvLineMission.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.dgvLineMission.Name = "dgvLineMission";
this.dgvLineMission.RowHeadersVisible = false;
this.dgvLineMission.RowHeadersWidth = 51;
this.dgvLineMission.RowTemplate.Height = 27;
this.dgvLineMission.Size = new System.Drawing.Size(386, 455);
this.dgvLineMission.Size = new System.Drawing.Size(290, 388);
this.dgvLineMission.TabIndex = 28;
//
// Column24
......@@ -515,11 +518,10 @@
// tabPage2
//
this.tabPage2.Controls.Add(this.tableLayoutPanel1);
this.tabPage2.Location = new System.Drawing.Point(4, 25);
this.tabPage2.Margin = new System.Windows.Forms.Padding(4);
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(4);
this.tabPage2.Size = new System.Drawing.Size(1730, 493);
this.tabPage2.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage2.Size = new System.Drawing.Size(1299, 416);
this.tabPage2.TabIndex = 3;
this.tabPage2.Text = "日志";
this.tabPage2.UseVisualStyleBackColor = true;
......@@ -532,25 +534,56 @@
this.tableLayoutPanel1.Controls.Add(this.TxtLog, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 1, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(4, 4);
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 485F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1722, 485);
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 388F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1293, 410);
this.tableLayoutPanel1.TabIndex = 6;
//
// TxtLog
//
this.TxtLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.TxtLog.Location = new System.Drawing.Point(4, 4);
this.TxtLog.Margin = new System.Windows.Forms.Padding(4);
this.TxtLog.Location = new System.Drawing.Point(3, 3);
this.TxtLog.Multiline = true;
this.TxtLog.Name = "TxtLog";
this.TxtLog.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.TxtLog.Size = new System.Drawing.Size(738, 477);
this.TxtLog.Size = new System.Drawing.Size(554, 404);
this.TxtLog.TabIndex = 5;
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.lblVMIGetBoxDestInfo);
this.flowLayoutPanel1.Controls.Add(this.lblGetRack);
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel1.Location = new System.Drawing.Point(562, 2);
this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(729, 406);
this.flowLayoutPanel1.TabIndex = 6;
//
// lblVMIGetBoxDestInfo
//
this.lblVMIGetBoxDestInfo.AutoSize = true;
this.lblVMIGetBoxDestInfo.Location = new System.Drawing.Point(2, 0);
this.lblVMIGetBoxDestInfo.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblVMIGetBoxDestInfo.Name = "lblVMIGetBoxDestInfo";
this.lblVMIGetBoxDestInfo.Size = new System.Drawing.Size(47, 12);
this.lblVMIGetBoxDestInfo.TabIndex = 0;
this.lblVMIGetBoxDestInfo.Text = "BoxDest";
//
// lblGetRack
//
this.lblGetRack.AutoSize = true;
this.lblGetRack.Location = new System.Drawing.Point(53, 0);
this.lblGetRack.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblGetRack.Name = "lblGetRack";
this.lblGetRack.Size = new System.Drawing.Size(47, 12);
this.lblGetRack.TabIndex = 1;
this.lblGetRack.Text = "GetRack";
//
// tabPage3
//
this.tabPage3.Controls.Add(this.button1);
......@@ -562,20 +595,20 @@
this.tabPage3.Controls.Add(this.BtnMissionPause);
this.tabPage3.Controls.Add(this.BtnMissionReady);
this.tabPage3.Controls.Add(this.LstAgvPlace);
this.tabPage3.Location = new System.Drawing.Point(4, 25);
this.tabPage3.Margin = new System.Windows.Forms.Padding(4);
this.tabPage3.Location = new System.Drawing.Point(4, 22);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new System.Windows.Forms.Padding(4);
this.tabPage3.Size = new System.Drawing.Size(1730, 493);
this.tabPage3.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3);
this.tabPage3.Size = new System.Drawing.Size(1299, 416);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "agv手动";
this.tabPage3.UseVisualStyleBackColor = true;
//
// button1
//
this.button1.Location = new System.Drawing.Point(632, 85);
this.button1.Location = new System.Drawing.Point(474, 68);
this.button1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(109, 44);
this.button1.Size = new System.Drawing.Size(82, 35);
this.button1.TabIndex = 35;
this.button1.Text = "设置负载信号";
this.button1.UseVisualStyleBackColor = true;
......@@ -583,10 +616,9 @@
//
// btnSetRFID
//
this.btnSetRFID.Location = new System.Drawing.Point(448, 85);
this.btnSetRFID.Margin = new System.Windows.Forms.Padding(4);
this.btnSetRFID.Location = new System.Drawing.Point(336, 68);
this.btnSetRFID.Name = "btnSetRFID";
this.btnSetRFID.Size = new System.Drawing.Size(100, 44);
this.btnSetRFID.Size = new System.Drawing.Size(75, 35);
this.btnSetRFID.TabIndex = 34;
this.btnSetRFID.Text = "设置RFID";
this.btnSetRFID.UseVisualStyleBackColor = true;
......@@ -594,9 +626,10 @@
//
// txtAgvRFID
//
this.txtAgvRFID.Location = new System.Drawing.Point(448, 34);
this.txtAgvRFID.Location = new System.Drawing.Point(336, 27);
this.txtAgvRFID.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.txtAgvRFID.Name = "txtAgvRFID";
this.txtAgvRFID.Size = new System.Drawing.Size(100, 25);
this.txtAgvRFID.Size = new System.Drawing.Size(76, 21);
this.txtAgvRFID.TabIndex = 33;
//
// groupBox2
......@@ -623,9 +656,11 @@
this.groupBox2.Controls.Add(this.TxtCharge4);
this.groupBox2.Controls.Add(this.BtnWriteCharge4);
this.groupBox2.Controls.Add(this.BtnReadCharge4);
this.groupBox2.Location = new System.Drawing.Point(969, 34);
this.groupBox2.Location = new System.Drawing.Point(727, 27);
this.groupBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(730, 309);
this.groupBox2.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.groupBox2.Size = new System.Drawing.Size(548, 247);
this.groupBox2.TabIndex = 32;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "充电";
......@@ -633,37 +668,33 @@
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(595, 127);
this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label5.Location = new System.Drawing.Point(446, 102);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(60, 15);
this.label5.Size = new System.Drawing.Size(47, 12);
this.label5.TabIndex = 31;
this.label5.Text = "充电桩7";
//
// TxtCharge7
//
this.TxtCharge7.Location = new System.Drawing.Point(591, 146);
this.TxtCharge7.Margin = new System.Windows.Forms.Padding(4);
this.TxtCharge7.Location = new System.Drawing.Point(443, 117);
this.TxtCharge7.Name = "TxtCharge7";
this.TxtCharge7.Size = new System.Drawing.Size(127, 25);
this.TxtCharge7.Size = new System.Drawing.Size(96, 21);
this.TxtCharge7.TabIndex = 28;
//
// BtnWriteCharge7
//
this.BtnWriteCharge7.Location = new System.Drawing.Point(591, 225);
this.BtnWriteCharge7.Margin = new System.Windows.Forms.Padding(4);
this.BtnWriteCharge7.Location = new System.Drawing.Point(443, 180);
this.BtnWriteCharge7.Name = "BtnWriteCharge7";
this.BtnWriteCharge7.Size = new System.Drawing.Size(128, 38);
this.BtnWriteCharge7.Size = new System.Drawing.Size(96, 30);
this.BtnWriteCharge7.TabIndex = 30;
this.BtnWriteCharge7.Text = "写";
this.BtnWriteCharge7.UseVisualStyleBackColor = true;
//
// BtnReadCharge7
//
this.BtnReadCharge7.Location = new System.Drawing.Point(591, 179);
this.BtnReadCharge7.Margin = new System.Windows.Forms.Padding(4);
this.BtnReadCharge7.Location = new System.Drawing.Point(443, 143);
this.BtnReadCharge7.Name = "BtnReadCharge7";
this.BtnReadCharge7.Size = new System.Drawing.Size(128, 38);
this.BtnReadCharge7.Size = new System.Drawing.Size(96, 30);
this.BtnReadCharge7.TabIndex = 29;
this.BtnReadCharge7.Text = "读";
this.BtnReadCharge7.UseVisualStyleBackColor = true;
......@@ -671,36 +702,34 @@
// cmbBoxAGVName
//
this.cmbBoxAGVName.FormattingEnabled = true;
this.cmbBoxAGVName.Location = new System.Drawing.Point(67, 64);
this.cmbBoxAGVName.Location = new System.Drawing.Point(50, 51);
this.cmbBoxAGVName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.cmbBoxAGVName.Name = "cmbBoxAGVName";
this.cmbBoxAGVName.Size = new System.Drawing.Size(121, 23);
this.cmbBoxAGVName.Size = new System.Drawing.Size(92, 20);
this.cmbBoxAGVName.TabIndex = 27;
this.cmbBoxAGVName.SelectedIndexChanged += new System.EventHandler(this.cmbBoxAGVName_SelectedIndexChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(301, 127);
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Location = new System.Drawing.Point(226, 102);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(60, 15);
this.label3.Size = new System.Drawing.Size(47, 12);
this.label3.TabIndex = 25;
this.label3.Text = "充电桩5";
//
// TxtCharge5
//
this.TxtCharge5.Location = new System.Drawing.Point(297, 146);
this.TxtCharge5.Margin = new System.Windows.Forms.Padding(4);
this.TxtCharge5.Location = new System.Drawing.Point(223, 117);
this.TxtCharge5.Name = "TxtCharge5";
this.TxtCharge5.Size = new System.Drawing.Size(127, 25);
this.TxtCharge5.Size = new System.Drawing.Size(96, 21);
this.TxtCharge5.TabIndex = 19;
//
// BtnReadCharge5
//
this.BtnReadCharge5.Location = new System.Drawing.Point(297, 179);
this.BtnReadCharge5.Margin = new System.Windows.Forms.Padding(4);
this.BtnReadCharge5.Location = new System.Drawing.Point(223, 143);
this.BtnReadCharge5.Name = "BtnReadCharge5";
this.BtnReadCharge5.Size = new System.Drawing.Size(128, 38);
this.BtnReadCharge5.Size = new System.Drawing.Size(96, 30);
this.BtnReadCharge5.TabIndex = 20;
this.BtnReadCharge5.Text = "读";
this.BtnReadCharge5.UseVisualStyleBackColor = true;
......@@ -708,10 +737,9 @@
// ChkAutoCharge
//
this.ChkAutoCharge.AutoSize = true;
this.ChkAutoCharge.Location = new System.Drawing.Point(50, 25);
this.ChkAutoCharge.Margin = new System.Windows.Forms.Padding(4);
this.ChkAutoCharge.Location = new System.Drawing.Point(38, 20);
this.ChkAutoCharge.Name = "ChkAutoCharge";
this.ChkAutoCharge.Size = new System.Drawing.Size(89, 19);
this.ChkAutoCharge.Size = new System.Drawing.Size(72, 16);
this.ChkAutoCharge.TabIndex = 10;
this.ChkAutoCharge.Text = "自动充电";
this.ChkAutoCharge.UseVisualStyleBackColor = true;
......@@ -719,47 +747,42 @@
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(437, 127);
this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Location = new System.Drawing.Point(328, 102);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(60, 15);
this.label4.Size = new System.Drawing.Size(47, 12);
this.label4.TabIndex = 26;
this.label4.Text = "充电桩6";
//
// BtnWriteCharge5
//
this.BtnWriteCharge5.Location = new System.Drawing.Point(297, 225);
this.BtnWriteCharge5.Margin = new System.Windows.Forms.Padding(4);
this.BtnWriteCharge5.Location = new System.Drawing.Point(223, 180);
this.BtnWriteCharge5.Name = "BtnWriteCharge5";
this.BtnWriteCharge5.Size = new System.Drawing.Size(128, 38);
this.BtnWriteCharge5.Size = new System.Drawing.Size(96, 30);
this.BtnWriteCharge5.TabIndex = 21;
this.BtnWriteCharge5.Text = "写";
this.BtnWriteCharge5.UseVisualStyleBackColor = true;
//
// TxtCharge6
//
this.TxtCharge6.Location = new System.Drawing.Point(433, 146);
this.TxtCharge6.Margin = new System.Windows.Forms.Padding(4);
this.TxtCharge6.Location = new System.Drawing.Point(325, 117);
this.TxtCharge6.Name = "TxtCharge6";
this.TxtCharge6.Size = new System.Drawing.Size(127, 25);
this.TxtCharge6.Size = new System.Drawing.Size(96, 21);
this.TxtCharge6.TabIndex = 22;
//
// BtnWriteCharge6
//
this.BtnWriteCharge6.Location = new System.Drawing.Point(433, 225);
this.BtnWriteCharge6.Margin = new System.Windows.Forms.Padding(4);
this.BtnWriteCharge6.Location = new System.Drawing.Point(325, 180);
this.BtnWriteCharge6.Name = "BtnWriteCharge6";
this.BtnWriteCharge6.Size = new System.Drawing.Size(128, 38);
this.BtnWriteCharge6.Size = new System.Drawing.Size(96, 30);
this.BtnWriteCharge6.TabIndex = 24;
this.BtnWriteCharge6.Text = "写";
this.BtnWriteCharge6.UseVisualStyleBackColor = true;
//
// BtnReadCharge6
//
this.BtnReadCharge6.Location = new System.Drawing.Point(433, 179);
this.BtnReadCharge6.Margin = new System.Windows.Forms.Padding(4);
this.BtnReadCharge6.Location = new System.Drawing.Point(325, 143);
this.BtnReadCharge6.Name = "BtnReadCharge6";
this.BtnReadCharge6.Size = new System.Drawing.Size(128, 38);
this.BtnReadCharge6.Size = new System.Drawing.Size(96, 30);
this.BtnReadCharge6.TabIndex = 23;
this.BtnReadCharge6.Text = "读";
this.BtnReadCharge6.UseVisualStyleBackColor = true;
......@@ -767,27 +790,24 @@
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(29, 127);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Location = new System.Drawing.Point(22, 102);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 15);
this.label1.Size = new System.Drawing.Size(47, 12);
this.label1.TabIndex = 17;
this.label1.Text = "充电桩3";
//
// TxtCharge3
//
this.TxtCharge3.Location = new System.Drawing.Point(25, 146);
this.TxtCharge3.Margin = new System.Windows.Forms.Padding(4);
this.TxtCharge3.Location = new System.Drawing.Point(19, 117);
this.TxtCharge3.Name = "TxtCharge3";
this.TxtCharge3.Size = new System.Drawing.Size(127, 25);
this.TxtCharge3.Size = new System.Drawing.Size(96, 21);
this.TxtCharge3.TabIndex = 11;
//
// BtnReadCharge3
//
this.BtnReadCharge3.Location = new System.Drawing.Point(25, 179);
this.BtnReadCharge3.Margin = new System.Windows.Forms.Padding(4);
this.BtnReadCharge3.Location = new System.Drawing.Point(19, 143);
this.BtnReadCharge3.Name = "BtnReadCharge3";
this.BtnReadCharge3.Size = new System.Drawing.Size(128, 38);
this.BtnReadCharge3.Size = new System.Drawing.Size(96, 30);
this.BtnReadCharge3.TabIndex = 12;
this.BtnReadCharge3.Text = "读";
this.BtnReadCharge3.UseVisualStyleBackColor = true;
......@@ -795,57 +815,51 @@
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(165, 127);
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label2.Location = new System.Drawing.Point(124, 102);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(60, 15);
this.label2.Size = new System.Drawing.Size(47, 12);
this.label2.TabIndex = 18;
this.label2.Text = "充电桩4";
//
// BtnWriteCharge3
//
this.BtnWriteCharge3.Location = new System.Drawing.Point(25, 225);
this.BtnWriteCharge3.Margin = new System.Windows.Forms.Padding(4);
this.BtnWriteCharge3.Location = new System.Drawing.Point(19, 180);
this.BtnWriteCharge3.Name = "BtnWriteCharge3";
this.BtnWriteCharge3.Size = new System.Drawing.Size(128, 38);
this.BtnWriteCharge3.Size = new System.Drawing.Size(96, 30);
this.BtnWriteCharge3.TabIndex = 13;
this.BtnWriteCharge3.Text = "写";
this.BtnWriteCharge3.UseVisualStyleBackColor = true;
//
// TxtCharge4
//
this.TxtCharge4.Location = new System.Drawing.Point(161, 146);
this.TxtCharge4.Margin = new System.Windows.Forms.Padding(4);
this.TxtCharge4.Location = new System.Drawing.Point(121, 117);
this.TxtCharge4.Name = "TxtCharge4";
this.TxtCharge4.Size = new System.Drawing.Size(127, 25);
this.TxtCharge4.Size = new System.Drawing.Size(96, 21);
this.TxtCharge4.TabIndex = 14;
//
// BtnWriteCharge4
//
this.BtnWriteCharge4.Location = new System.Drawing.Point(161, 225);
this.BtnWriteCharge4.Margin = new System.Windows.Forms.Padding(4);
this.BtnWriteCharge4.Location = new System.Drawing.Point(121, 180);
this.BtnWriteCharge4.Name = "BtnWriteCharge4";
this.BtnWriteCharge4.Size = new System.Drawing.Size(128, 38);
this.BtnWriteCharge4.Size = new System.Drawing.Size(96, 30);
this.BtnWriteCharge4.TabIndex = 16;
this.BtnWriteCharge4.Text = "写";
this.BtnWriteCharge4.UseVisualStyleBackColor = true;
//
// BtnReadCharge4
//
this.BtnReadCharge4.Location = new System.Drawing.Point(161, 179);
this.BtnReadCharge4.Margin = new System.Windows.Forms.Padding(4);
this.BtnReadCharge4.Location = new System.Drawing.Point(121, 143);
this.BtnReadCharge4.Name = "BtnReadCharge4";
this.BtnReadCharge4.Size = new System.Drawing.Size(128, 38);
this.BtnReadCharge4.Size = new System.Drawing.Size(96, 30);
this.BtnReadCharge4.TabIndex = 15;
this.BtnReadCharge4.Text = "读";
this.BtnReadCharge4.UseVisualStyleBackColor = true;
//
// BtnClearError
//
this.BtnClearError.Location = new System.Drawing.Point(769, 258);
this.BtnClearError.Margin = new System.Windows.Forms.Padding(4);
this.BtnClearError.Location = new System.Drawing.Point(577, 206);
this.BtnClearError.Name = "BtnClearError";
this.BtnClearError.Size = new System.Drawing.Size(128, 85);
this.BtnClearError.Size = new System.Drawing.Size(96, 68);
this.BtnClearError.TabIndex = 19;
this.BtnClearError.Text = "清除错误";
this.BtnClearError.UseVisualStyleBackColor = true;
......@@ -853,10 +867,9 @@
//
// BtnMissionAdd
//
this.BtnMissionAdd.Location = new System.Drawing.Point(226, 72);
this.BtnMissionAdd.Margin = new System.Windows.Forms.Padding(4);
this.BtnMissionAdd.Location = new System.Drawing.Point(170, 58);
this.BtnMissionAdd.Name = "BtnMissionAdd";
this.BtnMissionAdd.Size = new System.Drawing.Size(128, 78);
this.BtnMissionAdd.Size = new System.Drawing.Size(96, 62);
this.BtnMissionAdd.TabIndex = 3;
this.BtnMissionAdd.Text = "添加任务";
this.BtnMissionAdd.UseVisualStyleBackColor = true;
......@@ -864,10 +877,9 @@
//
// BtnMissionPause
//
this.BtnMissionPause.Location = new System.Drawing.Point(613, 258);
this.BtnMissionPause.Margin = new System.Windows.Forms.Padding(4);
this.BtnMissionPause.Location = new System.Drawing.Point(460, 206);
this.BtnMissionPause.Name = "BtnMissionPause";
this.BtnMissionPause.Size = new System.Drawing.Size(128, 85);
this.BtnMissionPause.Size = new System.Drawing.Size(96, 68);
this.BtnMissionPause.TabIndex = 2;
this.BtnMissionPause.Text = "暂停";
this.BtnMissionPause.UseVisualStyleBackColor = true;
......@@ -875,10 +887,9 @@
//
// BtnMissionReady
//
this.BtnMissionReady.Location = new System.Drawing.Point(448, 258);
this.BtnMissionReady.Margin = new System.Windows.Forms.Padding(4);
this.BtnMissionReady.Location = new System.Drawing.Point(336, 206);
this.BtnMissionReady.Name = "BtnMissionReady";
this.BtnMissionReady.Size = new System.Drawing.Size(128, 85);
this.BtnMissionReady.Size = new System.Drawing.Size(96, 68);
this.BtnMissionReady.TabIndex = 1;
this.BtnMissionReady.Text = "运行";
this.BtnMissionReady.UseVisualStyleBackColor = true;
......@@ -890,11 +901,10 @@
| System.Windows.Forms.AnchorStyles.Left)));
this.LstAgvPlace.FormattingEnabled = true;
this.LstAgvPlace.IntegralHeight = false;
this.LstAgvPlace.ItemHeight = 15;
this.LstAgvPlace.Location = new System.Drawing.Point(8, 8);
this.LstAgvPlace.Margin = new System.Windows.Forms.Padding(4);
this.LstAgvPlace.ItemHeight = 12;
this.LstAgvPlace.Location = new System.Drawing.Point(6, 6);
this.LstAgvPlace.Name = "LstAgvPlace";
this.LstAgvPlace.Size = new System.Drawing.Size(199, 313);
this.LstAgvPlace.Size = new System.Drawing.Size(150, 275);
this.LstAgvPlace.TabIndex = 0;
//
// tableLayoutPanel4
......@@ -904,67 +914,41 @@
this.tableLayoutPanel4.Controls.Add(this.lblWarnMsg, 0, 1);
this.tableLayoutPanel4.Controls.Add(this.lblMsg, 0, 0);
this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 179);
this.tableLayoutPanel4.Location = new System.Drawing.Point(2, 151);
this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.tableLayoutPanel4.Name = "tableLayoutPanel4";
this.tableLayoutPanel4.RowCount = 2;
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel4.Size = new System.Drawing.Size(1740, 64);
this.tableLayoutPanel4.Size = new System.Drawing.Size(1309, 55);
this.tableLayoutPanel4.TabIndex = 8;
//
// lblWarnMsg
//
this.lblWarnMsg.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblWarnMsg.ForeColor = System.Drawing.Color.Red;
this.lblWarnMsg.Location = new System.Drawing.Point(3, 32);
this.lblWarnMsg.Location = new System.Drawing.Point(2, 27);
this.lblWarnMsg.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblWarnMsg.Name = "lblWarnMsg";
this.lblWarnMsg.Size = new System.Drawing.Size(1734, 32);
this.lblWarnMsg.Size = new System.Drawing.Size(1305, 28);
this.lblWarnMsg.TabIndex = 1;
//
// lblMsg
//
this.lblMsg.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblMsg.Location = new System.Drawing.Point(3, 0);
this.lblMsg.Location = new System.Drawing.Point(2, 0);
this.lblMsg.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblMsg.Name = "lblMsg";
this.lblMsg.Size = new System.Drawing.Size(1734, 32);
this.lblMsg.Size = new System.Drawing.Size(1305, 27);
this.lblMsg.TabIndex = 0;
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.lblVMIGetBoxDestInfo);
this.flowLayoutPanel1.Controls.Add(this.lblGetRack);
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel1.Location = new System.Drawing.Point(749, 3);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(970, 479);
this.flowLayoutPanel1.TabIndex = 6;
//
// lblVMIGetBoxDestInfo
//
this.lblVMIGetBoxDestInfo.AutoSize = true;
this.lblVMIGetBoxDestInfo.Location = new System.Drawing.Point(3, 0);
this.lblVMIGetBoxDestInfo.Name = "lblVMIGetBoxDestInfo";
this.lblVMIGetBoxDestInfo.Size = new System.Drawing.Size(63, 15);
this.lblVMIGetBoxDestInfo.TabIndex = 0;
this.lblVMIGetBoxDestInfo.Text = "BoxDest";
//
// lblGetRack
//
this.lblGetRack.AutoSize = true;
this.lblGetRack.Location = new System.Drawing.Point(72, 0);
this.lblGetRack.Name = "lblGetRack";
this.lblGetRack.Size = new System.Drawing.Size(63, 15);
this.lblGetRack.TabIndex = 1;
this.lblGetRack.Text = "GetRack";
//
// FrmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1746, 776);
this.ClientSize = new System.Drawing.Size(1313, 656);
this.Controls.Add(this.tableLayoutPanel3);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "FrmMain";
this.Text = "AGV产线调度";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
......@@ -981,13 +965,13 @@
this.tabPage2.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.tabPage3.ResumeLayout(false);
this.tabPage3.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.tableLayoutPanel4.ResumeLayout(false);
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
......
......@@ -25,8 +25,8 @@ namespace AGVControl
InitializeComponent();
showTimer = new System.Timers.Timer();
showTimer.Interval = 1000;
showTimer.Enabled = true;
showTimer.AutoReset = true;
//showTimer.Enabled = true;
//showTimer.AutoReset = true;
showTimer.Elapsed += ShowTimer_Elapsed;
showTimer.Start();
Common.logTextBox = TxtLog;
......@@ -120,7 +120,7 @@ namespace AGVControl
private void Control_AgvOnline(int agvIndex)
{
Invoke(new Action(() => { DgvAgv.Rows[agvIndex].DefaultCellStyle.ForeColor = Common.agvInfo[agvIndex].IsCon ? Color.Black : Color.Red; }));
System.GC.Collect();
GC.Collect();
}
private void ItemShow_Click(object sender, EventArgs e)
......@@ -202,7 +202,7 @@ namespace AGVControl
Common.WriteIni(item.Name, SettingString.RFID, item.RFID);
}
showTimer.Enabled = false;
//showTimer.Enabled = false;
showTimer.Stop();
Common.control.AgvChanged -= Control_AgvChanged;
Common.control.AgvOnline -= Control_AgvOnline;
......
......@@ -40,11 +40,11 @@ namespace AGVControl
return;
}
}
Common.logTextBox = new TextBox();
Common.missionView = new DataGridView();
//Common.logTextBox = new TextBox();
//Common.missionView = new DataGridView();
Common.missionManager = new MissionManager();
Common.log = log4net.LogManager.GetLogger("AgvServer");
Common.LogInfo("=====程序开始=====");
Common.log.Info("=====程序开始=====");
ReadConfig();
Common.ReadLinePlace();
......@@ -52,8 +52,9 @@ namespace AGVControl
Common.control = new BLL.Control();
//软件开启时检查小车当前的任务状态,并获取各节点的坐标位置
//Common.CheckAGVMissionState();
//获取节点位置
Common.GetNodesPosition();
//Common.GetNodesPosition();
Common.control.Start();
Common.server = new AgvServer();
Common.server.Start();
......@@ -65,7 +66,7 @@ namespace AGVControl
Common.control.Stop();
Common.server.Stop();
Common.web.Close();
Common.LogInfo("=====程序结束=====\r\n");
Common.log.Info("=====程序结束=====\r\n");
}
private static void ReadConfig()
......@@ -86,7 +87,7 @@ namespace AGVControl
temp = line[i].Split(',');
if (temp.Length != 5) continue;
//string val = Common.appConfig.AppSettings.Settings[temp[1]].Value;
Boolean.TryParse(Common.ReadIni(temp[1],SettingString.IsUse),out isuse);//Convert.ToBoolean(val.Split(',')[0]);
bool.TryParse(Common.ReadIni(temp[1], SettingString.IsUse), out isuse); //Convert.ToBoolean(val.Split(',')[0]);
rfid = Common.ReadIni(temp[1],SettingString.RFID); //val.Split(',')[1];
Common.agvInfo.Add(new Agv_Info(temp[0], temp[1], temp[2], temp[3], temp[4], isuse, rfid));
}
......
[A5]
EmptyShelfCnt=0
IsUse=True
IsUse=False
[E14]
EmptyShelfCnt=0
[MiR_R1763]
IsUse=True
IsUse=False
RFID=
[MiR_R1764]
IsUse=True
IsUse=False
RFID=
[MiR_R1767]
IsUse=False
......
[2020-07-01 15:17:57,270][1]INFO =====程序开始=====
[2020-07-01 15:18:02,937][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-01 15:18:02,937][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-01 15:18:08,008][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-01 15:18:08,008][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-01 15:18:13,080][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-01 15:18:13,081][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-01 15:18:18,152][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-01 15:18:18,152][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-01 15:18:18,166][1]INFO Server Start
[2020-07-01 15:18:27,967][1]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/Webservice/AGVService/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\WebService.cs:行号 85
[2020-07-01 15:18:28,454][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-01 15:18:52,567][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-01 15:18:53,730][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-01 15:18:55,898][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-01 15:18:59,901][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-01 15:19:04,477][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-01 15:19:05,366][1]INFO 非法的IP地址
[2020-07-01 15:19:06,185][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-01 15:19:07,796][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-01 15:20:21,519][1]INFO =====程序开始=====
[2020-07-01 15:20:26,898][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-01 15:20:26,899][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-01 15:20:31,971][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-01 15:20:31,971][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-01 15:20:37,043][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-01 15:20:37,043][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-01 15:20:42,114][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-01 15:20:42,114][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-01 15:20:42,130][1]INFO Server Start
[2020-07-01 15:20:43,518][1]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/Webservice/AGVService/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\WebService.cs:行号 85
[2020-07-01 15:20:44,062][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-01 15:20:57,156][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-01 15:21:08,635][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-01 15:21:10,070][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-01 15:21:17,748][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-01 15:21:23,544][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-01 15:21:26,315][1]INFO E1 Ping 10.85.199.42 请求没有响应
[2020-07-01 15:21:27,872][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-01 15:21:34,744][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-01 15:21:36,669][1]INFO E2 Ping 10.85.199.90 请求没有响应
[2020-07-01 15:21:37,670][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-01 15:21:37,749][1]INFO E3 Ping 10.85.199.91 请求没有响应
[2020-07-01 15:21:37,749][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-01 15:21:39,671][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-01 15:21:39,696][1]INFO E4 Ping 10.85.199.92 请求没有响应
[2020-07-01 15:21:40,748][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-01 15:21:40,754][1]INFO E5 Ping 10.85.199.93 请求没有响应
[2020-07-01 15:21:42,670][1]INFO E6 Ping 10.85.199.94 请求没有响应
[2020-07-01 15:21:43,669][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-01 15:21:43,758][1]INFO E8 Ping 10.85.199.95 请求没有响应
[2020-07-01 15:21:43,763][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-01 15:21:45,670][1]INFO E9 Ping 10.85.199.180 请求没有响应
[2020-07-01 15:21:45,677][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-01 15:21:46,767][1]INFO E10 Ping 10.85.199.181 请求没有响应
[2020-07-01 15:21:46,773][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-01 15:21:48,669][1]INFO E11 Ping 10.85.199.182 请求没有响应
[2020-07-01 15:21:49,670][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-01 15:21:49,783][1]INFO E12 Ping 10.85.199.183 请求没有响应
[2020-07-01 15:21:49,794][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-01 15:34:39,078][1]INFO =====程序开始=====
[2020-07-01 15:34:44,529][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 09:46:07,069][1]INFO =====程序开始=====
[2020-07-04 09:46:12,391][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-04 09:46:12,391][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 09:46:17,460][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-04 09:46:17,460][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 09:46:22,528][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-04 09:46:22,528][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 09:46:27,596][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-04 09:46:27,596][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 09:46:27,600][1]INFO Server Start
[2020-07-04 09:46:28,171][1]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/Webservice/AGVService/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\WebService.cs:行号 85
[2020-07-04 09:46:30,293][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-04 09:46:32,292][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-04 09:46:32,292][1]INFO E1 Ping 10.85.199.42 请求没有响应
[2020-07-04 09:46:34,292][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-04 09:46:34,293][1]INFO E2 Ping 10.85.199.90 请求没有响应
[2020-07-04 09:46:36,292][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-04 09:46:36,292][1]INFO E3 Ping 10.85.199.91 请求没有响应
[2020-07-04 09:46:38,293][1]INFO E4 Ping 10.85.199.92 请求没有响应
[2020-07-04 09:46:39,292][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-04 09:46:40,292][1]INFO E5 Ping 10.85.199.93 请求没有响应
[2020-07-04 09:46:41,292][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-04 09:46:42,292][1]INFO E6 Ping 10.85.199.94 请求没有响应
[2020-07-04 09:46:43,292][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-04 09:46:44,291][1]INFO E8 Ping 10.85.199.95 请求没有响应
[2020-07-04 09:46:45,292][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-04 09:46:46,293][1]INFO E9 Ping 10.85.199.180 请求没有响应
[2020-07-04 09:46:48,292][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-04 09:46:48,292][1]INFO E10 Ping 10.85.199.181 请求没有响应
[2020-07-04 09:46:50,292][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-04 09:46:50,293][1]INFO E11 Ping 10.85.199.182 请求没有响应
[2020-07-04 09:46:52,292][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-04 09:46:52,292][1]INFO E12 Ping 10.85.199.183 请求没有响应
[2020-07-04 09:46:54,291][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-04 09:46:54,291][1]INFO E14 Ping 10.85.199.184 请求没有响应
[2020-07-04 09:46:56,292][1]INFO E15 Ping 10.85.199.185 请求没有响应
[2020-07-04 09:46:57,292][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-04 09:46:58,292][1]INFO E16 Ping 10.85.199.96 请求没有响应
[2020-07-04 09:46:59,292][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-04 09:47:01,292][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-04 09:47:03,292][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-04 09:47:03,292][1]INFO E1 Ping 10.85.199.42 请求没有响应
[2020-07-04 09:47:05,293][1]INFO E2 Ping 10.85.199.90 请求没有响应
[2020-07-04 09:47:06,292][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-04 09:47:07,294][1]INFO E3 Ping 10.85.199.91 请求没有响应
[2020-07-04 13:59:40,139][1]INFO =====程序开始=====
[2020-07-04 13:59:45,446][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-04 13:59:45,446][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 13:59:50,513][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-04 13:59:50,513][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 13:59:55,582][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-04 13:59:55,582][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 14:00:00,650][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-04 14:00:00,650][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-04 14:00:00,655][1]INFO Server Start
[2020-07-04 14:00:01,172][1]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/Webservice/AGVService/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\WebService.cs:行号 85
[2020-07-04 14:00:03,272][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-04 14:00:05,271][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-04 14:00:05,271][1]INFO E1 Ping 10.85.199.42 请求没有响应
[2020-07-04 14:00:06,288][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-04 14:00:06,288][1]INFO E2 Ping 10.85.199.90 请求没有响应
[2020-07-04 14:00:08,270][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-04 14:00:08,270][1]INFO E3 Ping 10.85.199.91 请求没有响应
[2020-07-04 14:00:09,290][1]INFO E4 Ping 10.85.199.92 请求没有响应
[2020-07-04 14:00:11,270][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-04 14:00:11,271][1]INFO E5 Ping 10.85.199.93 请求没有响应
[2020-07-04 14:00:12,287][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-04 14:00:12,288][1]INFO E6 Ping 10.85.199.94 请求没有响应
[2020-07-04 14:00:14,272][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-04 14:00:14,272][1]INFO E8 Ping 10.85.199.95 请求没有响应
[2020-07-04 14:00:15,321][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-04 14:00:15,321][1]INFO E9 Ping 10.85.199.180 请求没有响应
[2020-07-04 14:00:17,271][1]INFO E10 Ping 10.85.199.181 请求没有响应
[2020-07-04 14:00:18,270][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-04 14:00:18,328][1]INFO E11 Ping 10.85.199.182 请求没有响应
[2020-07-04 14:00:18,330][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:43:45,264][1]INFO =====程序开始=====
[2020-07-08 15:43:53,942][1]INFO =====程序开始=====
[2020-07-08 15:43:59,404][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-08 15:43:59,404][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-08 15:44:04,477][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-08 15:44:04,477][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-08 15:44:09,548][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-08 15:44:09,548][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-08 15:44:14,620][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-08 15:44:14,620][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-08 15:44:19,694][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-08 15:44:19,694][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:44:24,764][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-08 15:44:24,764][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:44:29,836][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-07-08 15:44:29,836][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:44:34,905][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-07-08 15:44:34,905][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:44:39,977][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-07-08 15:44:39,977][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:44:45,048][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-07-08 15:44:45,048][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:44:50,124][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:44:50,124][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:44:55,195][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:44:55,195][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:00,265][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:45:00,266][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:05,338][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:45:05,338][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:10,406][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:45:10,406][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:15,477][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:45:15,477][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:20,549][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:45:20,549][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:25,621][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:45:25,621][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:30,692][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-07-08 15:45:30,692][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:35,761][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-07-08 15:45:35,762][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:35,813][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:35,864][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:35,915][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:35,966][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,017][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,067][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,118][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,169][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,220][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,270][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,322][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,372][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,423][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,474][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,525][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,576][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,626][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,676][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-08 15:45:36,714][1]INFO Server Start
[2020-07-08 15:45:38,031][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:45:39,721][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:45:41,043][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:45:42,720][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:45:44,084][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:45:45,721][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:45:47,096][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:45:48,721][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:45:50,110][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:45:51,720][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:45:53,123][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:45:54,721][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:45:56,130][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:45:57,721][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:45:59,131][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:46:00,720][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:46:02,132][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:46:03,720][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:46:05,132][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:46:06,724][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:46:08,238][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:46:08,713][1]ERROR Open
System.ServiceModel.AddressAccessDeniedException: HTTP 无法注册 URL http://+:80/Webservice/AGVService/。进程不具有此命名空间的访问权限(有关详细信息,请参见 http://go.microsoft.com/fwlink/?LinkId=70353)。 ---> System.Net.HttpListenerException: 拒绝访问。
在 System.Net.HttpListener.AddAllPrefixes()
在 System.Net.HttpListener.Start()
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
--- 内部异常堆栈跟踪的结尾 ---
在 System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)
在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)
在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.HttpChannelListener`1.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open()
在 BLL.WebService.Open(String url) 位置 C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\WebService.cs:行号 85
[2020-07-08 15:46:09,728][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:09,729][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:09,729][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:09,729][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:09,729][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:09,729][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:09,729][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:09,730][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:09,731][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:09,731][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:09,731][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:09,731][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:09,731][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:09,731][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:09,731][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:10,221][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:46:11,243][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:12,732][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:12,733][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:13,228][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:46:14,253][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:15,734][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:15,735][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:16,222][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:46:17,250][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:18,736][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:19,222][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:46:20,251][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:21,738][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:21,739][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:21,739][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:21,739][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:21,739][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:22,300][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:46:23,259][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:24,740][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:24,741][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:25,222][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:46:26,259][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:27,743][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:27,744][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:28,223][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-08 15:46:29,262][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:30,745][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:30,746][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:30,747][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:30,747][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:31,223][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-08 15:46:32,261][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:33,747][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:33,748][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:33,749][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:33,749][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:33,749][6]DEBUG KeepLive 没有找到G16
[2020-07-08 15:46:41,177][6]DEBUG KeepLive 没有找到A5
[2020-07-08 15:46:41,178][6]DEBUG KeepLive 没有找到A6
[2020-07-08 15:46:41,178][6]DEBUG KeepLive 没有找到E1
[2020-07-08 15:46:41,178][6]DEBUG KeepLive 没有找到E2
[2020-07-08 15:46:41,178][6]DEBUG KeepLive 没有找到E3
[2020-07-08 15:46:41,179][6]DEBUG KeepLive 没有找到E4
[2020-07-08 15:46:41,179][6]DEBUG KeepLive 没有找到E5
[2020-07-08 15:46:41,179][6]DEBUG KeepLive 没有找到E6
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E8
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E9
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E10
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E11
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E12
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E14
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E15
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E16
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E21
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到E22
[2020-07-08 15:46:41,180][6]DEBUG KeepLive 没有找到G1
[2020-07-08 15:46:41,189][6]DEBUG KeepLive 没有找到G2
[2020-07-08 15:46:41,189][6]DEBUG KeepLive 没有找到G3
[2020-07-08 15:46:41,189][6]DEBUG KeepLive 没有找到G4
[2020-07-08 15:46:41,189][6]DEBUG KeepLive 没有找到G5
[2020-07-08 15:46:41,189][6]DEBUG KeepLive 没有找到G6
[2020-07-08 15:46:41,190][6]DEBUG KeepLive 没有找到G7
[2020-07-08 15:46:41,190][6]DEBUG KeepLive 没有找到G8
[2020-07-08 15:46:41,190][6]DEBUG KeepLive 没有找到G9
[2020-07-08 15:46:41,192][6]DEBUG KeepLive 没有找到G10
[2020-07-08 15:46:41,192][6]DEBUG KeepLive 没有找到G11
[2020-07-08 15:46:41,192][6]DEBUG KeepLive 没有找到G12
[2020-07-08 15:46:41,192][6]DEBUG KeepLive 没有找到G13
[2020-07-08 15:46:41,192][6]DEBUG KeepLive 没有找到G14
[2020-07-08 15:46:41,192][6]DEBUG KeepLive 没有找到G15
[2020-07-08 15:46:41,192][6]DEBUG KeepLive 没有找到G16
[2020-07-11 17:28:48,864][1]INFO =====程序开始=====
[2020-07-11 17:28:54,317][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:28:54,317][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:28:59,385][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:28:59,386][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:29:04,453][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:29:04,453][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:29:09,523][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:29:09,523][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:29:14,595][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-11 17:29:14,595][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:29:19,663][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-11 17:29:19,663][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:29:24,731][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-07-11 17:29:24,731][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:29:29,798][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-07-11 17:29:29,798][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:29:34,867][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-07-11 17:29:34,867][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:29:39,934][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-07-11 17:29:39,934][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:29:45,004][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:29:45,004][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:29:50,072][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:29:50,072][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:29:55,140][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:29:55,140][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:00,210][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:30:00,210][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:05,277][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:30:05,277][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:10,347][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:30:10,347][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:15,416][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:30:15,416][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:20,485][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:30:20,485][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:25,553][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:30:25,553][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:30,622][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-07-11 17:30:30,622][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:30,673][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:30,723][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:30,774][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:30,825][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:30,876][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:30,927][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:30,978][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,029][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,079][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,130][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,181][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,232][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,283][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,334][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,385][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,435][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,486][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,537][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:30:31,545][1]INFO Server Start
[2020-07-11 17:30:34,263][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-11 17:30:36,261][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-11 17:30:38,260][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-11 17:30:40,260][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-11 17:30:43,260][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-11 17:30:45,261][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-11 17:30:47,260][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-11 17:30:49,260][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-11 17:30:53,943][1]INFO =====程序开始=====
[2020-07-11 17:30:59,263][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:30:59,264][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:31:04,332][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:31:04,332][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:31:09,400][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:31:09,400][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:31:14,468][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:31:14,468][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:31:19,537][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-11 17:31:19,537][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:33:43,589][1]INFO =====程序开始=====
[2020-07-11 17:33:58,398][1]INFO =====程序开始=====
[2020-07-11 17:34:03,771][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:34:03,771][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:34:08,842][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:34:08,842][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:34:13,909][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:34:13,909][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:34:18,978][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:34:18,978][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:34:24,049][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-11 17:34:24,049][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:34:29,117][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-11 17:34:29,118][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:34:34,186][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-07-11 17:34:34,186][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:34:39,253][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-07-11 17:34:39,253][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:34:44,320][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-07-11 17:34:44,321][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:34:49,389][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-07-11 17:34:49,389][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:34:54,456][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:34:54,457][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:34:59,524][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:34:59,525][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:35:04,594][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:35:04,594][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:35:09,661][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:35:09,662][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:35:14,729][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:35:14,729][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:35:19,797][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:35:19,798][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:35:24,866][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:35:24,867][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:35:29,936][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:35:29,936][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:35:35,005][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:35:35,005][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:35:47,164][1]INFO =====程序开始=====
[2020-07-11 17:35:52,583][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:35:52,583][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:35:57,651][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:35:57,651][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:36:02,720][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:36:02,720][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:36:07,788][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:36:07,788][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:36:12,859][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-11 17:36:12,859][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:17,928][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-11 17:36:17,928][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:22,998][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-07-11 17:36:22,998][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:28,066][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-07-11 17:36:28,066][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:33,134][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-07-11 17:36:33,134][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:38,202][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-07-11 17:36:38,202][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:43,270][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:36:43,270][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:48,338][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:36:48,338][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:53,405][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:36:53,405][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:36:58,475][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:36:58,475][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:03,548][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:37:03,548][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:08,616][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:37:08,616][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:13,686][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:37:13,687][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:18,755][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:37:18,755][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:23,834][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-07-11 17:37:23,834][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:28,902][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-07-11 17:37:28,903][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:28,954][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,004][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,055][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,106][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,157][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,208][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,259][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,310][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,361][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,411][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,462][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,513][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,564][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,615][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,666][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,717][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,767][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,818][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:37:29,827][1]INFO Server Start
[2020-07-11 17:37:35,441][1]INFO =====程序开始=====
[2020-07-11 17:37:40,778][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:37:40,778][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:37:55,346][1]INFO =====程序开始=====
[2020-07-11 17:38:00,689][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:38:00,689][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:38:05,758][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:38:05,758][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:38:56,002][1]INFO =====程序开始=====
[2020-07-11 17:39:01,337][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:39:01,337][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:39:06,406][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:39:06,406][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:39:11,474][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:39:11,474][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:41:24,811][1]INFO =====程序开始=====
[2020-07-11 17:42:58,888][1]INFO =====程序开始=====
[2020-07-11 17:43:04,246][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:43:04,246][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:43:09,313][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:43:09,313][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:43:14,383][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:43:14,383][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:46:39,069][1]INFO =====程序开始=====
[2020-07-11 17:55:36,008][1]INFO =====程序开始=====
[2020-07-11 17:55:41,337][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:55:41,337][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:55:46,408][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:55:46,408][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:55:51,477][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:55:51,477][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:55:56,545][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:55:56,545][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:57:00,908][1]INFO =====程序开始=====
[2020-07-11 17:57:06,265][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:57:06,266][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:57:11,332][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:57:11,332][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:57:16,400][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:57:16,400][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:57:21,468][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:57:21,468][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:57:26,538][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-11 17:57:26,538][1]ERROR GetNodesPosition 获取节点位置失败
[2020-07-11 17:58:25,885][1]INFO =====程序开始=====
[2020-07-11 17:58:31,204][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:58:31,205][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:58:46,885][1]INFO =====程序开始=====
[2020-07-11 17:58:52,211][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:58:52,212][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-11 17:58:57,283][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-11 17:58:57,283][1]ERROR CheckAGVMissionState 获取PLC20失败
[2020-07-21 10:14:31,645][1]INFO =====程序开始=====
[2020-07-29 10:37:35,016][1]INFO =====程序开始=====
[2020-07-29 10:37:35,364][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:37:35,364][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:37:35,416][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:37:35,416][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:37:35,468][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:37:35,468][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:37:35,521][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:37:35,521][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:37:35,577][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-29 10:37:35,577][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:35,629][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-29 10:37:35,629][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:35,681][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:35,684][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:35,735][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:35,735][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:35,787][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:35,787][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:35,840][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:35,840][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:35,892][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:35,892][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:35,945][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:35,945][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:35,997][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:35,997][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,049][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:36,049][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,104][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:36,104][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,154][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:36,155][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,208][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:36,208][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,260][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:36,260][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,312][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:37:36,312][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,364][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-07-29 10:37:36,364][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,417][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-07-29 10:37:36,417][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,469][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-07-29 10:37:36,469][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,520][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,520][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,571][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,571][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,624][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,624][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,676][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,676][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,728][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,728][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,781][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,781][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,833][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,833][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,884][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,884][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,936][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:37:36,936][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:36,988][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-07-29 10:37:36,988][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,040][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-07-29 10:37:37,040][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,092][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-07-29 10:37:37,092][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,143][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,194][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,244][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,295][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,346][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,397][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:37:37,422][1]INFO Server Start
[2020-07-29 10:37:40,260][5]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:37:40,760][5]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:37:42,760][5]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:37:44,760][5]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:37:47,760][5]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:37:49,760][5]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:37:51,760][5]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:37:53,760][5]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:37:56,760][5]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:37:58,760][5]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:38:00,760][5]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:38:01,260][5]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:38:04,260][5]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:38:06,260][5]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:38:07,694][1]INFO Web服务已开启
[2020-07-29 10:38:08,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:38:10,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:38:13,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:38:15,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:38:17,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:38:19,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:38:22,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:38:24,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:38:26,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:38:28,262][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:38:31,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:38:33,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:50:17,104][1]INFO =====程序开始=====
[2020-07-29 10:50:22,322][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:50:22,322][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:50:27,390][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:50:27,390][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:51:04,574][1]INFO =====程序开始=====
[2020-07-29 10:51:09,832][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:51:09,832][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:51:14,900][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:51:14,900][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:51:19,966][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:51:19,966][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:51:25,035][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-07-29 10:51:25,035][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-07-29 10:51:30,102][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-29 10:51:30,102][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:51:35,170][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-07-29 10:51:35,170][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:51:40,237][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-07-29 10:51:40,237][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:51:45,305][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-07-29 10:51:45,305][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:51:50,372][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-07-29 10:51:50,372][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:51:55,440][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-07-29 10:51:55,440][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:00,507][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:00,507][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:05,576][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:05,576][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:10,642][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:10,642][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:15,711][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:15,711][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:20,777][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:20,777][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:25,846][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:25,846][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:30,913][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:30,913][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:35,983][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:35,983][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:41,051][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-07-29 10:52:41,051][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:46,119][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-07-29 10:52:46,119][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:51,186][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-07-29 10:52:51,186][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:52:56,254][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-07-29 10:52:56,254][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:01,322][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:01,322][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:06,389][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:06,389][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:11,457][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:11,457][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:16,524][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:16,525][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:21,591][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:21,591][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:26,659][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:26,659][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:31,726][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:31,726][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:36,795][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:36,795][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:41,862][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-07-29 10:53:41,862][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:46,929][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-07-29 10:53:46,929][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:51,996][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-07-29 10:53:51,996][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:57,063][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-07-29 10:53:57,063][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:57,115][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:57,165][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:57,215][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:57,266][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:57,316][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:57,367][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-07-29 10:53:57,371][1]INFO Server Start
[2020-07-29 10:54:00,260][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:54:02,260][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:54:04,260][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:54:06,261][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:54:09,260][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:54:11,260][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:54:13,260][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:54:15,260][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:54:18,260][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:54:20,260][7]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:54:22,260][7]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:54:24,260][7]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:54:27,260][7]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:54:27,523][1]INFO Web服务已开启
[2020-07-29 10:54:29,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:54:31,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:54:33,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:54:36,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:54:38,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:54:40,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:54:42,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:54:45,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:54:47,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:54:49,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:54:51,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:54:54,262][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:54:56,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:54:58,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:55:00,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:55:00,382][6]DEBUG KeepLive 没有找到A5
[2020-07-29 10:55:03,261][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:55:03,386][6]DEBUG KeepLive 没有找到A6
[2020-07-29 10:55:05,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:55:06,387][6]DEBUG KeepLive 没有找到E1
[2020-07-29 10:55:07,272][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:55:09,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:55:09,388][6]DEBUG KeepLive 没有找到E2
[2020-07-29 10:55:12,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:55:12,389][6]DEBUG KeepLive 没有找到E3
[2020-07-29 10:55:14,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:55:15,389][6]DEBUG KeepLive 没有找到E4
[2020-07-29 10:55:16,261][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:55:18,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:55:18,390][6]DEBUG KeepLive 没有找到E5
[2020-07-29 10:55:21,262][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:55:21,390][6]DEBUG KeepLive 没有找到E6
[2020-07-29 10:55:23,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:55:24,391][6]DEBUG KeepLive 没有找到E8
[2020-07-29 10:55:25,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:55:27,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:55:27,391][6]DEBUG KeepLive 没有找到E9
[2020-07-29 10:55:30,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:55:30,392][6]DEBUG KeepLive 没有找到E10
[2020-07-29 10:55:32,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:55:33,393][6]DEBUG KeepLive 没有找到E11
[2020-07-29 10:55:34,261][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:55:36,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:55:36,394][6]DEBUG KeepLive 没有找到E12
[2020-07-29 10:55:39,261][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:55:39,394][6]DEBUG KeepLive 没有找到E14
[2020-07-29 10:55:41,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:55:42,394][6]DEBUG KeepLive 没有找到E15
[2020-07-29 10:55:43,262][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:55:45,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:55:45,396][6]DEBUG KeepLive 没有找到E16
[2020-07-29 10:55:48,261][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:55:48,396][6]DEBUG KeepLive 没有找到E21
[2020-07-29 10:55:50,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:55:51,397][6]DEBUG KeepLive 没有找到E22
[2020-07-29 10:55:52,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:55:54,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:55:54,398][6]DEBUG KeepLive 没有找到G1
[2020-07-29 10:55:57,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:55:57,399][6]DEBUG KeepLive 没有找到G2
[2020-07-29 10:55:59,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:56:00,400][6]DEBUG KeepLive 没有找到G3
[2020-07-29 10:56:01,262][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:56:03,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:56:03,400][6]DEBUG KeepLive 没有找到G4
[2020-07-29 10:56:06,261][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:56:06,400][6]DEBUG KeepLive 没有找到G5
[2020-07-29 10:56:08,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:56:09,401][6]DEBUG KeepLive 没有找到G6
[2020-07-29 10:56:10,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:56:12,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:56:12,402][6]DEBUG KeepLive 没有找到G7
[2020-07-29 10:56:15,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:56:15,402][6]DEBUG KeepLive 没有找到G8
[2020-07-29 10:56:17,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:56:18,403][6]DEBUG KeepLive 没有找到G9
[2020-07-29 10:56:19,261][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:56:21,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:56:21,404][6]DEBUG KeepLive 没有找到G10
[2020-07-29 10:56:24,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:56:24,404][6]DEBUG KeepLive 没有找到G21
[2020-07-29 10:56:26,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:56:27,405][6]DEBUG KeepLive 没有找到G22
[2020-07-29 10:56:28,261][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:56:30,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:56:30,406][6]DEBUG KeepLive 没有找到G11
[2020-07-29 10:56:33,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:56:33,407][6]DEBUG KeepLive 没有找到G12
[2020-07-29 10:56:35,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:56:36,408][6]DEBUG KeepLive 没有找到G13
[2020-07-29 10:56:37,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:56:39,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:56:39,409][6]DEBUG KeepLive 没有找到G14
[2020-07-29 10:56:42,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:56:42,409][6]DEBUG KeepLive 没有找到G15
[2020-07-29 10:56:44,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:56:45,410][6]DEBUG KeepLive 没有找到G16
[2020-07-29 10:56:46,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:56:48,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:56:51,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:56:53,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:56:55,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:56:57,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:57:00,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:57:02,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:57:04,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:57:06,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:57:09,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:57:11,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:57:13,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:57:15,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:57:18,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:57:18,411][6]DEBUG KeepLive 没有找到A5
[2020-07-29 10:57:20,262][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:57:21,412][6]DEBUG KeepLive 没有找到A6
[2020-07-29 10:57:22,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:57:24,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:57:24,412][6]DEBUG KeepLive 没有找到E1
[2020-07-29 10:57:27,261][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:57:27,412][6]DEBUG KeepLive 没有找到E2
[2020-07-29 10:57:29,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:57:30,413][6]DEBUG KeepLive 没有找到E3
[2020-07-29 10:57:31,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:57:33,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:57:33,415][6]DEBUG KeepLive 没有找到E4
[2020-07-29 10:57:36,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:57:36,415][6]DEBUG KeepLive 没有找到E5
[2020-07-29 10:57:38,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:57:39,416][6]DEBUG KeepLive 没有找到E6
[2020-07-29 10:57:40,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:57:42,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:57:42,416][6]DEBUG KeepLive 没有找到E8
[2020-07-29 10:57:45,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:57:45,416][6]DEBUG KeepLive 没有找到E9
[2020-07-29 10:57:47,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:57:48,416][6]DEBUG KeepLive 没有找到E10
[2020-07-29 10:57:49,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:57:51,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:57:51,417][6]DEBUG KeepLive 没有找到E11
[2020-07-29 10:57:54,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:57:54,417][6]DEBUG KeepLive 没有找到E12
[2020-07-29 10:57:56,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:57:57,417][6]DEBUG KeepLive 没有找到E14
[2020-07-29 10:57:58,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:58:00,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:58:00,418][6]DEBUG KeepLive 没有找到E15
[2020-07-29 10:58:03,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:58:03,419][6]DEBUG KeepLive 没有找到E16
[2020-07-29 10:58:05,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:58:06,420][6]DEBUG KeepLive 没有找到E21
[2020-07-29 10:58:07,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:58:09,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:58:09,421][6]DEBUG KeepLive 没有找到E22
[2020-07-29 10:58:12,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:58:12,422][6]DEBUG KeepLive 没有找到G1
[2020-07-29 10:58:14,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:58:15,423][6]DEBUG KeepLive 没有找到G2
[2020-07-29 10:58:16,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:58:18,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:58:18,423][6]DEBUG KeepLive 没有找到G3
[2020-07-29 10:58:21,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:58:21,424][6]DEBUG KeepLive 没有找到G4
[2020-07-29 10:58:23,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:58:24,425][6]DEBUG KeepLive 没有找到G5
[2020-07-29 10:58:25,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:58:27,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:58:27,425][6]DEBUG KeepLive 没有找到G6
[2020-07-29 10:58:30,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:58:30,425][6]DEBUG KeepLive 没有找到G7
[2020-07-29 10:58:32,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:58:33,426][6]DEBUG KeepLive 没有找到G8
[2020-07-29 10:58:34,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:58:36,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:58:36,427][6]DEBUG KeepLive 没有找到G9
[2020-07-29 10:58:39,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:58:39,427][6]DEBUG KeepLive 没有找到G10
[2020-07-29 10:58:41,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:58:42,428][6]DEBUG KeepLive 没有找到G21
[2020-07-29 10:58:43,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:58:45,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:58:45,428][6]DEBUG KeepLive 没有找到G22
[2020-07-29 10:58:48,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:58:48,429][6]DEBUG KeepLive 没有找到G11
[2020-07-29 10:58:50,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:58:51,429][6]DEBUG KeepLive 没有找到G12
[2020-07-29 10:58:52,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:58:54,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:58:54,430][6]DEBUG KeepLive 没有找到G13
[2020-07-29 10:58:57,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:58:57,430][6]DEBUG KeepLive 没有找到G14
[2020-07-29 10:58:59,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:59:00,432][6]DEBUG KeepLive 没有找到G15
[2020-07-29 10:59:01,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:59:03,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:59:03,432][6]DEBUG KeepLive 没有找到G16
[2020-07-29 10:59:06,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:59:08,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:59:10,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:59:12,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:59:15,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:59:17,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:59:19,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:59:21,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:59:24,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:59:26,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:59:28,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:59:30,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:59:33,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:59:35,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:59:36,433][6]DEBUG KeepLive 没有找到A5
[2020-07-29 10:59:37,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:59:39,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:59:39,433][6]DEBUG KeepLive 没有找到A6
[2020-07-29 10:59:42,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:59:42,434][6]DEBUG KeepLive 没有找到E1
[2020-07-29 10:59:44,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:59:45,435][6]DEBUG KeepLive 没有找到E2
[2020-07-29 10:59:46,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:59:48,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:59:48,435][6]DEBUG KeepLive 没有找到E3
[2020-07-29 10:59:51,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 10:59:51,435][6]DEBUG KeepLive 没有找到E4
[2020-07-29 10:59:53,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 10:59:54,436][6]DEBUG KeepLive 没有找到E5
[2020-07-29 10:59:55,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 10:59:57,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 10:59:57,436][6]DEBUG KeepLive 没有找到E6
[2020-07-29 11:00:00,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 11:00:00,437][6]DEBUG KeepLive 没有找到E8
[2020-07-29 11:00:02,395][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 11:00:03,437][6]DEBUG KeepLive 没有找到E9
[2020-07-29 11:00:04,261][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 11:00:06,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 11:00:06,438][6]DEBUG KeepLive 没有找到E10
[2020-07-29 11:00:09,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 11:00:09,438][6]DEBUG KeepLive 没有找到E11
[2020-07-29 11:00:11,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 11:00:12,438][6]DEBUG KeepLive 没有找到E12
[2020-07-29 11:00:13,261][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 11:00:15,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 11:00:15,439][6]DEBUG KeepLive 没有找到E14
[2020-07-29 11:00:18,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 11:00:18,440][6]DEBUG KeepLive 没有找到E15
[2020-07-29 11:00:20,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 11:00:21,441][6]DEBUG KeepLive 没有找到E16
[2020-07-29 11:00:22,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 11:00:24,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 11:00:24,441][6]DEBUG KeepLive 没有找到E21
[2020-07-29 11:00:27,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 11:00:27,441][6]DEBUG KeepLive 没有找到E22
[2020-07-29 11:00:29,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 11:00:30,442][6]DEBUG KeepLive 没有找到G1
[2020-07-29 11:00:31,261][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 11:00:33,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 11:00:33,443][6]DEBUG KeepLive 没有找到G2
[2020-07-29 11:00:36,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 11:00:36,444][6]DEBUG KeepLive 没有找到G3
[2020-07-29 11:00:38,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 11:00:39,444][6]DEBUG KeepLive 没有找到G4
[2020-07-29 11:00:40,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 11:00:42,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 11:00:42,444][6]DEBUG KeepLive 没有找到G5
[2020-07-29 11:00:45,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 11:00:45,445][6]DEBUG KeepLive 没有找到G6
[2020-07-29 11:00:47,261][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 11:00:48,446][6]DEBUG KeepLive 没有找到G7
[2020-07-29 11:00:49,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 11:00:51,261][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 11:00:51,446][6]DEBUG KeepLive 没有找到G8
[2020-07-29 11:00:54,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 11:00:54,447][6]DEBUG KeepLive 没有找到G9
[2020-07-29 11:00:56,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 11:00:57,448][6]DEBUG KeepLive 没有找到G10
[2020-07-29 11:00:58,260][1]INFO Ping 10.85.199.73 请求没有响应
[2020-07-29 11:01:00,260][1]INFO Ping 10.85.199.74 请求没有响应
[2020-07-29 11:01:00,449][6]DEBUG KeepLive 没有找到G21
[2020-07-29 11:01:03,260][1]INFO Ping 10.85.199.71 请求没有响应
[2020-07-29 11:01:03,449][6]DEBUG KeepLive 没有找到G22
[2020-07-29 11:01:05,260][1]INFO Ping 10.85.199.72 请求没有响应
[2020-07-29 11:01:06,450][6]DEBUG KeepLive 没有找到G11
[2020-08-21 16:46:49,389][1]INFO =====程序开始=====
[2020-08-21 16:46:54,923][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-21 16:46:54,923][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-21 16:46:59,995][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-21 16:46:59,995][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-21 16:47:05,068][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-21 16:47:05,068][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-21 16:47:10,140][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-21 16:47:10,141][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-21 16:47:15,214][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-21 16:47:15,214][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:47:20,289][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-21 16:47:20,290][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:47:25,361][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-08-21 16:47:25,362][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:47:30,432][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-08-21 16:47:30,432][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:47:35,504][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-08-21 16:47:35,504][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:47:40,574][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-08-21 16:47:40,574][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:47:45,646][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:47:45,646][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:47:50,713][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:47:50,713][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:47:55,788][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:47:55,788][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:00,842][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:48:00,842][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:05,914][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:48:05,914][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:10,986][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:48:10,986][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:16,054][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:48:16,054][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:21,130][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:48:21,130][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:26,199][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-08-21 16:48:26,199][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:31,271][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-08-21 16:48:31,271][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:36,339][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-21 16:48:36,339][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:41,410][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-21 16:48:41,410][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:46,479][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:48:46,480][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:51,551][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:48:51,551][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:48:56,621][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:48:56,621][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:01,690][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:49:01,690][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:06,761][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:49:06,761][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:11,830][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:49:11,830][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:16,901][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:49:16,901][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:21,974][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:49:21,975][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:27,045][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-21 16:49:27,045][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:32,117][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-08-21 16:49:32,118][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:37,190][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-21 16:49:37,190][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:42,262][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-21 16:49:42,262][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:42,313][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:42,364][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:42,415][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:42,466][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:42,517][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:42,568][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-21 16:49:42,571][1]INFO Server Start
[2020-08-21 16:50:14,632][1]INFO Web服务已开启
[2020-08-21 16:50:20,305][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-21 16:50:20,305][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-21 16:50:25,399][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-21 16:50:25,399][1]DEBUG URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-21 16:50:30,419][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-21 16:50:30,419][1]DEBUG URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-21 16:50:35,445][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-21 16:50:35,445][1]DEBUG URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-21 16:50:45,589][10]DEBUG KeepLive 没有找到A5
[2020-08-21 16:50:48,591][10]DEBUG KeepLive 没有找到A6
[2020-08-21 16:50:51,592][10]DEBUG KeepLive 没有找到E1
[2020-08-21 16:50:54,593][10]DEBUG KeepLive 没有找到E2
[2020-08-21 16:50:57,594][10]DEBUG KeepLive 没有找到E3
[2020-08-21 16:50:58,595][7]INFO 服务端关闭连接,退出阻塞Accept
[2020-08-21 16:50:58,632][1]INFO Server Stop
[2020-08-21 16:50:58,812][1]INFO Web服务已关闭
[2020-08-21 16:50:58,813][1]INFO =====程序结束=====
[2020-08-23 15:05:33,111][1]INFO =====程序开始=====
[2020-08-23 15:05:33,261][1]ERROR 未能找到文件“C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\bin\Debug\Config\NodesParam.json”。/r/n 在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
在 System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
在 System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
在 System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize, Boolean checkHost)
在 System.IO.StreamReader..ctor(String path)
在 BLL.JsonHelper.ReadJson[T](String fileName) 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\JsonHelper.cs:行号 98
[2020-08-23 15:09:50,126][1]INFO =====程序开始=====
[2020-08-23 15:09:50,196][1]ERROR 未能找到文件“C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\bin\Debug\Config\NodesParam.json”。/r/n 在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
在 System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
在 System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
在 System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize, Boolean checkHost)
在 System.IO.StreamReader..ctor(String path)
在 BLL.JsonHelper.ReadJson[T](String fileName) 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\JsonHelper.cs:行号 98
[2020-08-23 15:11:12,866][1]INFO =====程序开始=====
[2020-08-23 15:11:12,953][1]ERROR 未能找到文件“C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\bin\Debug\Config\NodesParam.json”。/r/n 在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
在 System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
在 System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost)
在 System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize, Boolean checkHost)
在 System.IO.StreamReader..ctor(String path)
在 BLL.JsonHelper.ReadJson[T](String fileName) 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\JsonHelper.cs:行号 98
[2020-08-23 15:31:28,843][1]INFO =====程序开始=====
[2020-08-23 22:53:08,381][1]INFO =====程序开始=====
[2020-08-23 22:53:08,490][1]ERROR CurrentDomain_UnhandledException
System.FormatException: 该字符串未被识别为有效的布尔值。
在 System.Boolean.Parse(String value)
在 System.Convert.ToBoolean(String value)
在 AGVControl.Program.ReadConfig() 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\Program.cs:行号 89
在 AGVControl.Program.Main() 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\Program.cs:行号 48
[2020-08-23 22:55:20,518][1]INFO =====程序开始=====
[2020-08-23 22:55:34,533][1]ERROR CurrentDomain_UnhandledException
System.FormatException: 该字符串未被识别为有效的布尔值。
在 System.Boolean.Parse(String value)
在 System.Convert.ToBoolean(String value)
在 AGVControl.Program.ReadConfig() 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\Program.cs:行号 114
在 AGVControl.Program.Main() 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\Program.cs:行号 48
[2020-08-23 22:57:05,295][1]INFO =====程序开始=====
[2020-08-23 22:57:05,347][1]ERROR CurrentDomain_UnhandledException
System.FormatException: 输入字符串的格式不正确。
在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
在 System.Convert.ToInt32(String value)
在 AGVControl.Program.ReadConfig() 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\Program.cs:行号 115
在 AGVControl.Program.Main() 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\Program.cs:行号 48
[2020-08-23 22:57:51,946][1]INFO =====程序开始=====
[2020-08-23 22:58:24,564][1]INFO =====程序开始=====
[2020-08-23 23:00:22,666][1]INFO =====程序开始=====
[2020-08-23 23:00:33,050][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:00:33,050][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:00:33,103][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:00:33,103][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:00:33,156][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:00:33,156][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:00:33,208][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:00:33,209][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:00:33,261][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:00:33,261][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:00:33,313][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:00:33,313][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:00:33,316][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:00:33,367][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,367][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:00:33,419][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,420][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,471][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,472][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,523][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,525][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,576][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,577][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,628][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,629][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,679][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,680][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,731][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,732][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,783][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,785][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,836][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,837][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,888][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,889][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,940][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,941][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:33,992][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:33,993][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:34,044][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,045][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:00:34,095][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,096][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:00:34,147][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,148][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:00:34,199][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,200][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,251][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,252][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,303][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,304][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,355][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,356][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,407][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,409][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,459][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,460][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,512][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,513][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,564][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,565][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,616][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,617][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,668][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,671][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-08-23 23:00:34,723][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,726][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/07841fc6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,777][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,778][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/0efca2c6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:00:34,828][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,829][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:00:34,880][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,881][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:00:34,932][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:34,934][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-08-23 23:00:34,984][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:35,035][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:35,086][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:35,137][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:35,187][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:00:35,187][1]INFO Server Start
[2020-08-23 23:01:05,992][1]INFO Web服务已开启
[2020-08-23 23:01:06,229][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:01:06,229][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:01:06,234][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:01:06,234][1]DEBUG URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:01:06,236][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:01:06,236][1]DEBUG URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:01:06,238][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:01:06,238][1]DEBUG URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:01:06,239][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:01:06,239][1]DEBUG URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:01:06,241][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:01:06,241][1]DEBUG URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:01:38,194][9]DEBUG KeepLive 没有找到A5
[2020-08-23 23:01:41,195][9]DEBUG KeepLive 没有找到A6
[2020-08-23 23:01:44,196][9]DEBUG KeepLive 没有找到E1
[2020-08-23 23:01:47,197][9]DEBUG KeepLive 没有找到E2
[2020-08-23 23:01:50,198][9]DEBUG KeepLive 没有找到E3
[2020-08-23 23:01:53,198][9]DEBUG KeepLive 没有找到E4
[2020-08-23 23:01:56,199][9]DEBUG KeepLive 没有找到E5
[2020-08-23 23:01:59,200][9]DEBUG KeepLive 没有找到E6
[2020-08-23 23:02:02,201][9]DEBUG KeepLive 没有找到E8
[2020-08-23 23:02:05,202][9]DEBUG KeepLive 没有找到E9
[2020-08-23 23:02:08,203][9]DEBUG KeepLive 没有找到E10
[2020-08-23 23:02:11,205][9]DEBUG KeepLive 没有找到E11
[2020-08-23 23:02:13,561][1]INFO 手动添加任务成功:4D-5线
[2020-08-23 23:02:14,206][9]DEBUG KeepLive 没有找到E12
[2020-08-23 23:02:17,207][9]DEBUG KeepLive 没有找到E14
[2020-08-23 23:02:18,595][1]INFO 手动删除任务成功:4D-5线
[2020-08-23 23:02:20,208][9]DEBUG KeepLive 没有找到E15
[2020-08-23 23:02:23,209][9]DEBUG KeepLive 没有找到E21
[2020-08-23 23:02:26,210][9]DEBUG KeepLive 没有找到E22
[2020-08-23 23:02:29,211][9]DEBUG KeepLive 没有找到G1
[2020-08-23 23:02:32,212][9]DEBUG KeepLive 没有找到G2
[2020-08-23 23:02:35,213][9]DEBUG KeepLive 没有找到G3
[2020-08-23 23:02:38,213][9]DEBUG KeepLive 没有找到G4
[2020-08-23 23:02:41,214][9]DEBUG KeepLive 没有找到G5
[2020-08-23 23:02:44,215][9]DEBUG KeepLive 没有找到G6
[2020-08-23 23:02:47,217][9]DEBUG KeepLive 没有找到G7
[2020-08-23 23:02:50,217][9]DEBUG KeepLive 没有找到G8
[2020-08-23 23:02:53,218][9]DEBUG KeepLive 没有找到G9
[2020-08-23 23:02:56,219][9]DEBUG KeepLive 没有找到G10
[2020-08-23 23:02:59,220][9]DEBUG KeepLive 没有找到G14
[2020-08-23 23:03:02,221][9]DEBUG KeepLive 没有找到G15
[2020-08-23 23:03:05,222][9]DEBUG KeepLive 没有找到G21
[2020-08-23 23:03:08,223][9]DEBUG KeepLive 没有找到G22
[2020-08-23 23:03:11,224][9]DEBUG KeepLive 没有找到E16
[2020-08-23 23:03:14,225][9]DEBUG KeepLive 没有找到G11
[2020-08-23 23:03:17,226][9]DEBUG KeepLive 没有找到G12
[2020-08-23 23:03:20,227][9]DEBUG KeepLive 没有找到G13
[2020-08-23 23:03:23,228][9]DEBUG KeepLive 没有找到G16
[2020-08-23 23:03:56,229][9]DEBUG KeepLive 没有找到A5
[2020-08-23 23:03:59,230][9]DEBUG KeepLive 没有找到A6
[2020-08-23 23:04:02,231][9]DEBUG KeepLive 没有找到E1
[2020-08-23 23:04:05,232][9]DEBUG KeepLive 没有找到E2
[2020-08-23 23:04:08,232][9]DEBUG KeepLive 没有找到E3
[2020-08-23 23:04:11,233][9]DEBUG KeepLive 没有找到E4
[2020-08-23 23:04:14,234][9]DEBUG KeepLive 没有找到E5
[2020-08-23 23:04:17,235][9]DEBUG KeepLive 没有找到E6
[2020-08-23 23:04:20,236][9]DEBUG KeepLive 没有找到E8
[2020-08-23 23:04:23,237][9]DEBUG KeepLive 没有找到E9
[2020-08-23 23:04:26,238][9]DEBUG KeepLive 没有找到E10
[2020-08-23 23:04:29,239][9]DEBUG KeepLive 没有找到E11
[2020-08-23 23:04:32,240][9]DEBUG KeepLive 没有找到E12
[2020-08-23 23:04:35,241][9]DEBUG KeepLive 没有找到E14
[2020-08-23 23:04:38,242][9]DEBUG KeepLive 没有找到E15
[2020-08-23 23:04:41,243][9]DEBUG KeepLive 没有找到E21
[2020-08-23 23:04:44,244][9]DEBUG KeepLive 没有找到E22
[2020-08-23 23:04:47,244][9]DEBUG KeepLive 没有找到G1
[2020-08-23 23:04:50,244][9]DEBUG KeepLive 没有找到G2
[2020-08-23 23:04:53,246][9]DEBUG KeepLive 没有找到G3
[2020-08-23 23:04:56,246][9]DEBUG KeepLive 没有找到G4
[2020-08-23 23:24:44,319][1]INFO =====程序开始=====
[2020-08-23 23:24:44,618][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:24:44,618][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:24:44,676][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:24:44,676][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:24:44,730][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:24:44,730][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:24:44,782][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:24:44,782][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:24:44,835][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:24:44,835][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:24:44,889][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:24:44,889][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:24:44,895][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:24:44,945][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:44,947][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:24:44,998][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:44,999][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,051][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,053][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,104][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,106][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,157][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,159][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,210][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,211][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,262][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,265][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,317][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,318][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,370][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,371][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,421][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,423][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,474][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,476][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,527][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,529][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,580][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,581][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,633][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,635][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:24:45,686][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,688][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:24:45,739][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,742][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:24:45,792][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,793][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:45,844][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,845][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:45,897][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,898][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:45,949][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:45,951][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:46,002][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,004][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:46,056][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,057][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:46,111][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,113][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:46,167][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,171][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:46,222][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,225][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:46,276][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,278][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-08-23 23:24:46,342][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,368][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/07841fc6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:46,419][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,421][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/0efca2c6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:24:46,472][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,478][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:24:46,528][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,530][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:24:46,582][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,583][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-08-23 23:24:46,634][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,685][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,736][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,787][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,838][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:24:46,839][1]INFO Server Start
[2020-08-23 23:25:17,474][1]INFO Web服务已开启
[2020-08-23 23:25:17,691][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:25:17,691][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:25:17,694][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:25:17,694][1]DEBUG URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:25:17,695][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:25:17,695][1]DEBUG URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:25:17,696][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:25:17,696][1]DEBUG URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:25:17,697][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:25:17,697][1]DEBUG URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:25:17,698][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:25:17,698][1]DEBUG URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:25:29,847][1]INFO 手动添加任务成功:下料区(A5)
[2020-08-23 23:25:49,844][9]DEBUG KeepLive 没有找到A5
[2020-08-23 23:25:52,845][9]DEBUG KeepLive 没有找到A6
[2020-08-23 23:25:55,846][9]DEBUG KeepLive 没有找到E1
[2020-08-23 23:25:58,847][9]DEBUG KeepLive 没有找到E2
[2020-08-23 23:26:01,848][9]DEBUG KeepLive 没有找到E3
[2020-08-23 23:26:02,813][1]INFO 手动删除任务成功:下料区(A5)
[2020-08-23 23:26:04,849][9]DEBUG KeepLive 没有找到E4
[2020-08-23 23:26:07,850][9]DEBUG KeepLive 没有找到E5
[2020-08-23 23:26:10,851][9]DEBUG KeepLive 没有找到E6
[2020-08-23 23:26:13,852][9]DEBUG KeepLive 没有找到E8
[2020-08-23 23:26:16,853][9]DEBUG KeepLive 没有找到E9
[2020-08-23 23:26:19,854][9]DEBUG KeepLive 没有找到E10
[2020-08-23 23:26:22,855][9]DEBUG KeepLive 没有找到E11
[2020-08-23 23:26:25,855][9]DEBUG KeepLive 没有找到E12
[2020-08-23 23:26:28,856][9]DEBUG KeepLive 没有找到E14
[2020-08-23 23:26:31,857][9]DEBUG KeepLive 没有找到E15
[2020-08-23 23:26:34,858][9]DEBUG KeepLive 没有找到E21
[2020-08-23 23:26:37,859][9]DEBUG KeepLive 没有找到E22
[2020-08-23 23:26:40,859][9]DEBUG KeepLive 没有找到G1
[2020-08-23 23:26:43,860][9]DEBUG KeepLive 没有找到G2
[2020-08-23 23:26:46,861][9]DEBUG KeepLive 没有找到G3
[2020-08-23 23:26:49,862][9]DEBUG KeepLive 没有找到G4
[2020-08-23 23:26:52,863][9]DEBUG KeepLive 没有找到G5
[2020-08-23 23:26:55,864][9]DEBUG KeepLive 没有找到G6
[2020-08-23 23:26:58,864][9]DEBUG KeepLive 没有找到G7
[2020-08-23 23:27:01,865][9]DEBUG KeepLive 没有找到G8
[2020-08-23 23:27:04,866][9]DEBUG KeepLive 没有找到G9
[2020-08-23 23:27:07,868][9]DEBUG KeepLive 没有找到G10
[2020-08-23 23:27:10,869][9]DEBUG KeepLive 没有找到G14
[2020-08-23 23:27:13,870][9]DEBUG KeepLive 没有找到G15
[2020-08-23 23:27:16,870][9]DEBUG KeepLive 没有找到G21
[2020-08-23 23:27:19,870][9]DEBUG KeepLive 没有找到G22
[2020-08-23 23:27:22,871][9]DEBUG KeepLive 没有找到E16
[2020-08-23 23:27:25,872][9]DEBUG KeepLive 没有找到G11
[2020-08-23 23:27:28,873][9]DEBUG KeepLive 没有找到G12
[2020-08-23 23:27:31,874][9]DEBUG KeepLive 没有找到G13
[2020-08-23 23:27:34,874][9]DEBUG KeepLive 没有找到G16
[2020-08-23 23:28:07,875][9]DEBUG KeepLive 没有找到A5
[2020-08-23 23:28:10,876][9]DEBUG KeepLive 没有找到A6
[2020-08-23 23:28:13,876][9]DEBUG KeepLive 没有找到E1
[2020-08-23 23:28:16,877][9]DEBUG KeepLive 没有找到E2
[2020-08-23 23:28:19,878][9]DEBUG KeepLive 没有找到E3
[2020-08-23 23:28:22,879][9]DEBUG KeepLive 没有找到E4
[2020-08-23 23:28:25,880][9]DEBUG KeepLive 没有找到E5
[2020-08-23 23:28:28,881][9]DEBUG KeepLive 没有找到E6
[2020-08-23 23:28:31,882][9]DEBUG KeepLive 没有找到E8
[2020-08-23 23:28:36,876][1]INFO =====程序开始=====
[2020-08-23 23:28:37,290][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:28:37,290][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:28:37,344][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:28:37,344][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:28:37,401][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:28:37,402][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:28:37,454][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:28:37,455][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:28:37,508][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:28:37,508][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:28:37,561][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:28:37,561][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:28:37,565][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:28:37,615][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:37,616][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:28:37,668][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:37,670][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:37,722][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:37,724][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:37,775][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:37,776][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:37,826][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:37,828][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:37,879][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:37,881][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:37,932][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:37,933][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:37,984][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:37,986][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:38,037][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,039][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:38,090][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,092][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:38,143][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,147][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:38,198][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,199][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:38,251][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,253][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:38,304][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,305][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:28:38,357][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,360][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:28:38,411][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,412][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:28:38,463][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,465][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,516][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,518][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,569][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,583][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,634][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,635][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,687][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,689][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,751][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,753][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,804][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,805][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,856][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,858][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,908][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,910][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:38,961][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:38,962][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-08-23 23:28:39,013][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,014][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/07841fc6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:39,065][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,066][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/0efca2c6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:28:39,117][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,121][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:28:39,172][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,176][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:28:39,227][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,228][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-08-23 23:28:39,279][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,329][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,380][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,431][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,482][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:28:39,483][1]INFO Server Start
[2020-08-23 23:29:10,126][1]INFO Web服务已开启
[2020-08-23 23:29:10,304][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:29:10,305][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:29:10,308][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:29:10,308][1]DEBUG URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:29:10,310][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:29:10,310][1]DEBUG URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:29:10,312][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:29:10,312][1]DEBUG URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:29:10,314][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:29:10,314][1]DEBUG URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:29:10,316][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:29:10,316][1]DEBUG URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:29:42,491][10]DEBUG KeepLive 没有找到A5
[2020-08-23 23:29:45,492][10]DEBUG KeepLive 没有找到A6
[2020-08-23 23:29:48,492][10]DEBUG KeepLive 没有找到E1
[2020-08-23 23:29:51,492][10]DEBUG KeepLive 没有找到E2
[2020-08-23 23:29:52,656][1]INFO 手动添加任务成功:4D-14线
[2020-08-23 23:29:54,493][10]DEBUG KeepLive 没有找到E3
[2020-08-23 23:29:57,494][10]DEBUG KeepLive 没有找到E4
[2020-08-23 23:30:00,494][10]DEBUG KeepLive 没有找到E5
[2020-08-23 23:30:03,495][10]DEBUG KeepLive 没有找到E6
[2020-08-23 23:30:06,495][10]DEBUG KeepLive 没有找到E8
[2020-08-23 23:30:09,496][10]DEBUG KeepLive 没有找到E9
[2020-08-23 23:30:09,564][1]INFO 手动删除任务成功:4D-14线
[2020-08-23 23:30:12,497][10]DEBUG KeepLive 没有找到E10
[2020-08-23 23:30:15,497][10]DEBUG KeepLive 没有找到E11
[2020-08-23 23:30:18,498][10]DEBUG KeepLive 没有找到E12
[2020-08-23 23:30:21,499][10]DEBUG KeepLive 没有找到E14
[2020-08-23 23:30:24,500][10]DEBUG KeepLive 没有找到E15
[2020-08-23 23:30:26,929][1]ERROR DelLinePlace 失败 节点任务E14不存在
[2020-08-23 23:30:26,929][1]INFO 手动删除任务失败
[2020-08-23 23:30:27,501][10]DEBUG KeepLive 没有找到E21
[2020-08-23 23:30:30,502][10]DEBUG KeepLive 没有找到E22
[2020-08-23 23:30:33,503][10]DEBUG KeepLive 没有找到G1
[2020-08-23 23:30:36,504][10]DEBUG KeepLive 没有找到G2
[2020-08-23 23:30:38,754][1]INFO 手动添加任务成功:4D-14线
[2020-08-23 23:30:39,504][10]DEBUG KeepLive 没有找到G3
[2020-08-23 23:30:42,505][10]DEBUG KeepLive 没有找到G4
[2020-08-23 23:30:45,505][10]DEBUG KeepLive 没有找到G5
[2020-08-23 23:30:48,506][10]DEBUG KeepLive 没有找到G6
[2020-08-23 23:30:51,506][10]DEBUG KeepLive 没有找到G7
[2020-08-23 23:30:52,332][1]INFO 手动删除任务成功:4D-14线
[2020-08-23 23:30:54,507][10]DEBUG KeepLive 没有找到G8
[2020-08-23 23:30:57,508][10]DEBUG KeepLive 没有找到G9
[2020-08-23 23:31:00,509][10]DEBUG KeepLive 没有找到G10
[2020-08-23 23:31:03,509][10]DEBUG KeepLive 没有找到G14
[2020-08-23 23:31:06,510][10]DEBUG KeepLive 没有找到G15
[2020-08-23 23:31:09,511][10]DEBUG KeepLive 没有找到G21
[2020-08-23 23:31:12,511][10]DEBUG KeepLive 没有找到G22
[2020-08-23 23:31:15,512][10]DEBUG KeepLive 没有找到E16
[2020-08-23 23:31:18,513][10]DEBUG KeepLive 没有找到G11
[2020-08-23 23:31:21,514][10]DEBUG KeepLive 没有找到G12
[2020-08-23 23:31:24,515][10]DEBUG KeepLive 没有找到G13
[2020-08-23 23:31:27,516][10]DEBUG KeepLive 没有找到G16
[2020-08-23 23:32:00,517][10]DEBUG KeepLive 没有找到A5
[2020-08-23 23:32:03,518][10]DEBUG KeepLive 没有找到A6
[2020-08-23 23:32:06,518][10]DEBUG KeepLive 没有找到E1
[2020-08-23 23:32:09,519][10]DEBUG KeepLive 没有找到E2
[2020-08-23 23:32:12,520][10]DEBUG KeepLive 没有找到E3
[2020-08-23 23:32:15,521][10]DEBUG KeepLive 没有找到E4
[2020-08-23 23:32:18,522][10]DEBUG KeepLive 没有找到E5
[2020-08-23 23:32:21,522][10]DEBUG KeepLive 没有找到E6
[2020-08-23 23:32:24,523][10]DEBUG KeepLive 没有找到E8
[2020-08-23 23:32:27,523][10]DEBUG KeepLive 没有找到E9
[2020-08-23 23:32:30,524][10]DEBUG KeepLive 没有找到E10
[2020-08-23 23:32:33,524][10]DEBUG KeepLive 没有找到E11
[2020-08-23 23:32:36,525][10]DEBUG KeepLive 没有找到E12
[2020-08-23 23:32:39,526][10]DEBUG KeepLive 没有找到E14
[2020-08-23 23:32:42,527][10]DEBUG KeepLive 没有找到E15
[2020-08-23 23:32:45,527][10]DEBUG KeepLive 没有找到E21
[2020-08-23 23:32:48,528][10]DEBUG KeepLive 没有找到E22
[2020-08-23 23:32:51,528][10]DEBUG KeepLive 没有找到G1
[2020-08-23 23:32:54,528][10]DEBUG KeepLive 没有找到G2
[2020-08-23 23:32:57,529][10]DEBUG KeepLive 没有找到G3
[2020-08-23 23:33:00,530][10]DEBUG KeepLive 没有找到G4
[2020-08-23 23:33:03,531][10]DEBUG KeepLive 没有找到G5
[2020-08-23 23:33:06,532][10]DEBUG KeepLive 没有找到G6
[2020-08-23 23:33:09,533][10]DEBUG KeepLive 没有找到G7
[2020-08-23 23:38:16,288][1]INFO =====程序开始=====
[2020-08-23 23:38:16,593][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:38:16,593][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:38:16,655][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:38:16,655][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:38:16,710][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:38:16,710][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:38:16,762][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:38:16,762][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:38:16,816][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:38:16,817][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:38:16,869][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:38:16,869][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:38:16,874][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:38:16,924][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:16,926][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:38:16,977][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:16,978][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,030][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,031][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,083][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,085][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,136][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,140][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,192][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,194][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,245][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,248][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,298][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,300][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,352][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,354][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,405][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,406][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,458][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,460][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,512][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,515][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,566][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,567][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,619][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,621][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:38:17,671][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,673][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:38:17,725][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,726][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:38:17,778][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,781][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:17,832][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,834][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:17,885][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,888][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:17,939][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,941][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:17,992][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:17,993][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:18,044][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,045][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:18,096][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,098][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:18,150][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,151][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:18,212][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,215][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:18,270][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,320][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-08-23 23:38:18,372][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,384][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/07841fc6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:18,438][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,441][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/0efca2c6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:38:18,493][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,500][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:38:18,551][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,559][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:38:18,610][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,611][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-08-23 23:38:18,662][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,713][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,764][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,814][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,865][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:38:18,866][1]INFO Server Start
[2020-08-23 23:38:49,600][1]INFO Web服务已开启
[2020-08-23 23:38:49,797][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:38:49,797][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:38:49,802][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:38:49,802][1]DEBUG URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:38:49,804][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:38:49,804][1]DEBUG URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:38:49,805][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:38:49,805][1]DEBUG URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:38:49,807][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:38:49,807][1]DEBUG URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:38:49,807][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:38:49,807][1]DEBUG URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:39:21,874][9]DEBUG KeepLive 没有找到A5
[2020-08-23 23:39:24,875][9]DEBUG KeepLive 没有找到A6
[2020-08-23 23:39:27,876][9]DEBUG KeepLive 没有找到E1
[2020-08-23 23:39:30,876][9]DEBUG KeepLive 没有找到E2
[2020-08-23 23:39:33,877][9]DEBUG KeepLive 没有找到E3
[2020-08-23 23:39:36,878][9]DEBUG KeepLive 没有找到E4
[2020-08-23 23:39:39,879][9]DEBUG KeepLive 没有找到E5
[2020-08-23 23:39:42,880][9]DEBUG KeepLive 没有找到E6
[2020-08-23 23:39:45,880][9]DEBUG KeepLive 没有找到E8
[2020-08-23 23:39:46,299][1]INFO 手动清除agv缓存,MiR_R1763
[2020-08-23 23:39:46,305][1]DEBUG HttpDel URL: http://10.85.199.71/api/v2.0.0/mission_queue
[2020-08-23 23:39:46,308][1]DEBUG HttpPost URL: http://10.85.199.71/api/v2.0.0/mission_queue; Body: {"mission_id":"adcb7a04-b525-11ea-b6ad-00012998f5a0"} Return:
[2020-08-23 23:39:46,310][1]DEBUG HttpPut URL: http://10.85.199.71/api/v2.0.0/status?whitelist=state_id,state_text; Body: {"state_id": 3} Return:
[2020-08-23 23:39:46,311][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:39:46,311][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:39:48,885][9]DEBUG KeepLive 没有找到E9
[2020-08-23 23:39:51,886][9]DEBUG KeepLive 没有找到E10
[2020-08-23 23:39:54,887][9]DEBUG KeepLive 没有找到E11
[2020-08-23 23:39:57,887][9]DEBUG KeepLive 没有找到E12
[2020-08-23 23:40:00,888][9]DEBUG KeepLive 没有找到E14
[2020-08-23 23:40:03,889][9]DEBUG KeepLive 没有找到E15
[2020-08-23 23:40:06,889][9]DEBUG KeepLive 没有找到E21
[2020-08-23 23:40:09,890][9]DEBUG KeepLive 没有找到E22
[2020-08-23 23:40:12,891][9]DEBUG KeepLive 没有找到G1
[2020-08-23 23:40:13,945][1]INFO 手动清除缓存, A5
[2020-08-23 23:40:15,341][1]INFO 手动清除缓存, E1
[2020-08-23 23:40:15,892][9]DEBUG KeepLive 没有找到G2
[2020-08-23 23:40:18,893][9]DEBUG KeepLive 没有找到G3
[2020-08-23 23:40:21,894][9]DEBUG KeepLive 没有找到G4
[2020-08-23 23:40:24,896][9]DEBUG KeepLive 没有找到G5
[2020-08-23 23:40:27,897][9]DEBUG KeepLive 没有找到G6
[2020-08-23 23:40:30,897][9]DEBUG KeepLive 没有找到G7
[2020-08-23 23:40:33,898][9]DEBUG KeepLive 没有找到G8
[2020-08-23 23:40:36,898][9]DEBUG KeepLive 没有找到G9
[2020-08-23 23:40:39,899][9]DEBUG KeepLive 没有找到G10
[2020-08-23 23:40:41,725][1]INFO 手动添加任务成功:4D-10线
[2020-08-23 23:40:42,900][9]DEBUG KeepLive 没有找到G14
[2020-08-23 23:40:45,901][9]DEBUG KeepLive 没有找到G15
[2020-08-23 23:40:48,902][9]DEBUG KeepLive 没有找到G21
[2020-08-23 23:40:51,903][9]DEBUG KeepLive 没有找到G22
[2020-08-23 23:40:53,471][1]INFO 手动删除任务成功:4D-10线
[2020-08-23 23:40:54,903][9]DEBUG KeepLive 没有找到E16
[2020-08-23 23:40:57,903][9]DEBUG KeepLive 没有找到G11
[2020-08-23 23:41:00,904][9]DEBUG KeepLive 没有找到G12
[2020-08-23 23:41:03,905][9]DEBUG KeepLive 没有找到G13
[2020-08-23 23:41:06,905][9]DEBUG KeepLive 没有找到G16
[2020-08-23 23:45:13,954][1]INFO =====程序开始=====
[2020-08-23 23:45:14,311][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:45:14,311][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:45:14,364][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:45:14,364][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:45:14,421][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:45:14,421][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:45:14,473][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:45:14,473][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:45:14,526][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:45:14,526][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:45:14,579][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:45:14,579][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:45:14,582][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:45:14,633][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:14,635][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:45:14,686][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:14,689][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:14,739][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:14,740][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:14,791][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:14,796][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:14,847][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:14,848][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:14,899][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:14,900][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:14,951][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:14,955][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:15,005][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,007][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:15,059][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,063][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:15,114][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,115][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:15,166][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,167][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:15,218][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,220][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:15,271][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,272][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:15,324][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,325][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:45:15,391][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,408][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:45:15,459][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,462][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:45:15,512][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,513][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:15,564][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,593][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:15,645][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,648][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:15,699][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,701][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:15,752][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,753][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:15,805][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,806][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:15,857][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,858][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:15,909][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,910][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:15,961][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:15,962][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:16,013][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,014][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-08-23 23:45:16,065][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,066][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/07841fc6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:16,117][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,119][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/0efca2c6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:45:16,170][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,176][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:45:16,227][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,229][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:45:16,280][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,281][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-08-23 23:45:16,332][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,383][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,434][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,485][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,536][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:45:16,537][1]INFO Server Start
[2020-08-23 23:45:47,192][1]INFO Web服务已开启
[2020-08-23 23:45:47,390][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:45:47,390][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:45:47,393][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:45:47,393][1]DEBUG URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:45:47,394][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:45:47,394][1]DEBUG URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:45:47,394][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:45:47,394][1]DEBUG URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:45:47,395][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:45:47,395][1]DEBUG URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:45:47,396][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:45:47,396][1]DEBUG URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:46:11,172][7]INFO 服务端关闭连接,退出阻塞Accept
[2020-08-23 23:46:11,216][1]INFO Server Stop
[2020-08-23 23:46:11,256][1]INFO Web服务已关闭
[2020-08-23 23:46:11,256][1]INFO =====程序结束=====
[2020-08-23 23:50:14,428][1]INFO =====程序开始=====
[2020-08-23 23:50:14,697][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:50:14,697][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:50:14,753][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:50:14,753][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:50:14,808][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:50:14,808][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:50:14,863][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:50:14,863][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:50:14,915][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:50:14,915][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:50:14,968][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:50:14,968][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:50:14,973][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:50:15,025][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,026][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:50:15,078][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,080][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,132][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,133][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,184][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,185][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,235][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,236][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,288][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,291][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,342][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,344][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,394][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,395][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,447][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,448][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,498][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,503][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,554][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,555][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,606][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,607][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,659][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,660][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,712][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,714][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:50:15,765][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,767][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:50:15,818][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,819][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:50:15,870][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,872][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:15,923][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:15,926][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:15,979][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,012][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,063][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,064][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,115][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,116][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,180][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,186][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,237][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,238][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,289][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,290][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,341][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,342][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,393][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,394][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-08-23 23:50:16,445][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,446][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/07841fc6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,496][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,497][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/0efca2c6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:50:16,548][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,553][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:50:16,604][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,607][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:50:16,658][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,659][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-08-23 23:50:16,710][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,761][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,812][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,862][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,913][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:50:16,913][1]INFO Server Start
[2020-08-23 23:50:47,176][1]ERROR Open
System.ArgumentException: 此集合已经采用方案 http 的地址。此集合中每个方案中最多只能包含一个地址。如果服务承载于 IIS 中,则可以通过将“system.serviceModel/serviceHostingEnvironment/multipleSiteBindingsEnabled”设置为 true,或指定“system.serviceModel/serviceHostingEnvironment/baseAddressPrefixFilters”来解决此问题。
参数名: item
在 System.ServiceModel.UriSchemeKeyedCollection.InsertItem(Int32 index, Uri item)
在 System.Collections.Generic.SynchronizedCollection`1.Add(T item)
在 System.ServiceModel.ServiceHostBase.AddBaseAddress(Uri baseAddress)
在 System.ServiceModel.ServiceHostBase.LoadConfigurationSectionHelper(Uri baseAddress)
在 System.ServiceModel.Description.ConfigLoader.LoadHostConfig(ServiceElement serviceElement, ServiceHostBase host, Action`1 addBaseAddress)
在 System.ServiceModel.Description.ConfigLoader.LoadServiceDescription(ServiceHostBase host, ServiceDescription description, ServiceElement serviceElement, Action`1 addBaseAddress, Boolean skipHost)
在 System.ServiceModel.ServiceHostBase.LoadConfigurationSectionInternal(ConfigLoader configLoader, ServiceDescription description, ServiceElement serviceSection)
在 System.ServiceModel.ServiceHostBase.ApplyConfiguration()
在 System.ServiceModel.ServiceHost.ApplyConfiguration()
在 System.ServiceModel.ServiceHostBase.InitializeDescription(UriSchemeKeyedCollection baseAddresses)
在 System.ServiceModel.ServiceHost.InitializeDescription(Type serviceType, UriSchemeKeyedCollection baseAddresses)
在 System.ServiceModel.ServiceHost.InitializeDescription(Object singletonInstance, UriSchemeKeyedCollection baseAddresses)
在 System.ServiceModel.ServiceHost..ctor(Object singletonInstance, Uri[] baseAddresses)
在 System.ServiceModel.Web.WebServiceHost..ctor(Object singletonInstance, Uri[] baseAddresses)
在 BLL.WebService.Open(String url) 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 153
[2020-08-23 23:50:47,398][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:50:47,398][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:50:47,400][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:50:47,400][1]DEBUG URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:50:47,401][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:50:47,401][1]DEBUG URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:50:47,404][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:50:47,404][1]DEBUG URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:50:47,405][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:50:47,405][1]DEBUG URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:50:47,407][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:50:47,407][1]DEBUG URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:51:06,262][1]INFO Server Stop
[2020-08-23 23:51:06,262][7]INFO 服务端关闭连接,退出阻塞Accept
[2020-08-23 23:54:04,176][1]INFO =====程序开始=====
[2020-08-23 23:54:04,624][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:54:04,624][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:54:04,679][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:54:04,679][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:54:04,733][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:54:04,733][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:54:04,790][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:54:04,790][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:54:04,843][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:54:04,843][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:54:04,895][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/registers/20?whitelist=value Return:
[2020-08-23 23:54:04,895][1]DEBUG CheckAGVMissionState 获取PLC20失败
[2020-08-23 23:54:04,898][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/7ed952c3-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:54:04,949][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:04,950][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/929eb1c2-b520-11ea-b6ad-00012998f5a0 Return:
[2020-08-23 23:54:05,001][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,003][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/3b823fe4-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,054][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,056][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ede15fcb-b367-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,106][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,108][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/43855a9b-b365-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,159][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,161][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/73c8b98c-b368-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,212][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,213][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/5436efd7-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,264][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,266][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/6b7710c1-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,316][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,318][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/8f039d2e-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,369][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,370][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/9e0b64ab-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,421][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,422][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/aec7da80-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,474][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,475][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c10984c9-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,526][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,527][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d6e0b92a-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,578][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,580][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/efb04c55-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,632][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,633][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/fd6b1f95-b432-11ea-a1a5-00012999830e Return:
[2020-08-23 23:54:05,683][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,684][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/1e546c3a-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:54:05,738][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,740][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/431649a4-8abe-11ea-ab63-000129922ca6 Return:
[2020-08-23 23:54:05,792][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,797][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/d402fbc2-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:05,849][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,850][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ce0d60e9-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:05,902][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,904][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c768170a-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:05,955][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:05,958][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/c2de9745-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:06,009][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,010][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/be468ef4-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:06,060][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,061][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b9117881-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:06,112][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,114][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/b3cda9db-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:06,165][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,166][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ae09fc56-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:06,217][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,218][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/a64bdbbb-cdac-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:06,269][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,271][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/604b1c3c-ca4e-11ea-810b-00012999830e Return:
[2020-08-23 23:54:06,322][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,323][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/07841fc6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:06,374][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,375][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/0efca2c6-d0d4-11ea-a3e4-94c691a7387d Return:
[2020-08-23 23:54:06,425][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,430][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:54:06,481][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,484][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/cb7f117b-ca88-11ea-9b28-0001299981d4 Return:
[2020-08-23 23:54:06,535][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,536][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/positions/ac6c413e-895e-11ea-9374-000129922ca6 Return:
[2020-08-23 23:54:06,587][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,638][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,689][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,740][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,790][1]DEBUG GetNodesPosition 获取节点位置失败
[2020-08-23 23:54:06,790][1]INFO Server Start
[2020-08-23 23:54:37,039][1]ERROR Open
System.ArgumentException: 此集合已经采用方案 http 的地址。此集合中每个方案中最多只能包含一个地址。如果服务承载于 IIS 中,则可以通过将“system.serviceModel/serviceHostingEnvironment/multipleSiteBindingsEnabled”设置为 true,或指定“system.serviceModel/serviceHostingEnvironment/baseAddressPrefixFilters”来解决此问题。
参数名: item
在 System.ServiceModel.UriSchemeKeyedCollection.InsertItem(Int32 index, Uri item)
在 System.Collections.Generic.SynchronizedCollection`1.Add(T item)
在 System.ServiceModel.ServiceHostBase.AddBaseAddress(Uri baseAddress)
在 System.ServiceModel.ServiceHostBase.LoadConfigurationSectionHelper(Uri baseAddress)
在 System.ServiceModel.Description.ConfigLoader.LoadHostConfig(ServiceElement serviceElement, ServiceHostBase host, Action`1 addBaseAddress)
在 System.ServiceModel.Description.ConfigLoader.LoadServiceDescription(ServiceHostBase host, ServiceDescription description, ServiceElement serviceElement, Action`1 addBaseAddress, Boolean skipHost)
在 System.ServiceModel.ServiceHostBase.LoadConfigurationSectionInternal(ConfigLoader configLoader, ServiceDescription description, ServiceElement serviceSection)
在 System.ServiceModel.ServiceHostBase.ApplyConfiguration()
在 System.ServiceModel.ServiceHost.ApplyConfiguration()
在 System.ServiceModel.ServiceHostBase.InitializeDescription(UriSchemeKeyedCollection baseAddresses)
在 System.ServiceModel.ServiceHost.InitializeDescription(Type serviceType, UriSchemeKeyedCollection baseAddresses)
在 System.ServiceModel.ServiceHost.InitializeDescription(Object singletonInstance, UriSchemeKeyedCollection baseAddresses)
在 System.ServiceModel.ServiceHost..ctor(Object singletonInstance, Uri[] baseAddresses)
在 System.ServiceModel.Web.WebServiceHost..ctor(Object singletonInstance, Uri[] baseAddresses)
在 BLL.WebService.Open(String url) 位置 C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\BLL\LineWebService.cs:行号 153
[2020-08-23 23:54:37,249][1]DEBUG HttpGet URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:54:37,249][1]DEBUG URL: http://10.85.199.71/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:54:37,253][1]DEBUG HttpGet URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:54:37,253][1]DEBUG URL: http://10.85.199.72/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:54:37,254][1]DEBUG HttpGet URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:54:37,254][1]DEBUG URL: http://10.85.199.73/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:54:37,255][1]DEBUG HttpGet URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:54:37,255][1]DEBUG URL: http://10.85.199.74/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:54:37,256][1]DEBUG HttpGet URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:54:37,256][1]DEBUG URL: http://10.85.199.80/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:54:37,257][1]DEBUG HttpGet URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status Return:
[2020-08-23 23:54:37,257][1]DEBUG URL: http://10.85.199.81/api/v2.0.0/io_modules/007615a5-2220-11ea-99f2-94c691a73b53/status
Return:
[2020-08-23 23:55:09,797][9]DEBUG KeepLive 没有找到A5
[2020-08-23 23:55:12,798][9]DEBUG KeepLive 没有找到A6
[2020-08-23 23:55:15,799][9]DEBUG KeepLive 没有找到E1
[2020-08-23 23:55:18,800][9]DEBUG KeepLive 没有找到E2
[2020-08-23 23:55:21,801][9]DEBUG KeepLive 没有找到E3
[2020-08-23 23:55:24,802][9]DEBUG KeepLive 没有找到E4
[2020-08-23 23:55:27,802][9]DEBUG KeepLive 没有找到E5
[2020-08-23 23:55:30,802][9]DEBUG KeepLive 没有找到E6
[2020-08-23 23:55:33,803][9]DEBUG KeepLive 没有找到E8
[2020-08-23 23:55:36,804][9]DEBUG KeepLive 没有找到E9
[2020-08-23 23:55:39,805][9]DEBUG KeepLive 没有找到E10
[2020-08-23 23:55:42,806][9]DEBUG KeepLive 没有找到E11
[2020-08-23 23:55:45,806][9]DEBUG KeepLive 没有找到E12
[2020-08-23 23:55:48,807][9]DEBUG KeepLive 没有找到E14
[2020-08-23 23:55:51,808][9]DEBUG KeepLive 没有找到E15
[2020-08-23 23:55:54,809][9]DEBUG KeepLive 没有找到E21
[2020-08-23 23:55:57,810][9]DEBUG KeepLive 没有找到E22
[2020-08-23 23:56:00,811][9]DEBUG KeepLive 没有找到G1
[2020-08-23 23:56:03,812][9]DEBUG KeepLive 没有找到G2
[2020-08-23 23:56:06,812][9]DEBUG KeepLive 没有找到G3
[2020-08-23 23:56:09,813][9]DEBUG KeepLive 没有找到G4
[2020-08-23 23:56:12,814][9]DEBUG KeepLive 没有找到G5
[2020-08-23 23:56:15,815][9]DEBUG KeepLive 没有找到G6
[2020-08-23 23:56:18,816][9]DEBUG KeepLive 没有找到G7
[2020-08-23 23:56:21,816][9]DEBUG KeepLive 没有找到G8
[2020-08-23 23:56:24,817][9]DEBUG KeepLive 没有找到G9
[2020-08-23 23:56:27,818][9]DEBUG KeepLive 没有找到G10
[2020-08-23 23:56:30,819][9]DEBUG KeepLive 没有找到G14
[2020-08-23 23:56:33,819][9]DEBUG KeepLive 没有找到G15
[2020-08-23 23:56:36,820][9]DEBUG KeepLive 没有找到G21
[2020-08-23 23:56:39,821][9]DEBUG KeepLive 没有找到G22
[2020-08-23 23:56:42,822][9]DEBUG KeepLive 没有找到E16
[2020-08-23 23:56:45,823][9]DEBUG KeepLive 没有找到G11
[2020-08-23 23:56:48,823][9]DEBUG KeepLive 没有找到G12
[2020-08-23 23:56:51,824][9]DEBUG KeepLive 没有找到G13
[2020-08-23 23:56:54,825][9]DEBUG KeepLive 没有找到G16
[2020-08-23 23:57:27,826][9]DEBUG KeepLive 没有找到A5
[2020-08-23 23:57:30,827][9]DEBUG KeepLive 没有找到A6
[2020-08-23 23:57:33,828][9]DEBUG KeepLive 没有找到E1
[2020-08-23 23:57:36,829][9]DEBUG KeepLive 没有找到E2
[2020-08-23 23:57:39,830][9]DEBUG KeepLive 没有找到E3
[2020-08-23 23:57:42,830][9]DEBUG KeepLive 没有找到E4
[2020-08-23 23:57:45,831][9]DEBUG KeepLive 没有找到E5
[2020-08-23 23:57:48,831][9]DEBUG KeepLive 没有找到E6
[2020-08-23 23:57:51,831][9]DEBUG KeepLive 没有找到E8
[2020-08-23 23:57:54,832][9]DEBUG KeepLive 没有找到E9
[2020-08-23 23:57:57,833][9]DEBUG KeepLive 没有找到E10
[2020-08-23 23:58:00,834][9]DEBUG KeepLive 没有找到E11
[2020-08-23 23:58:03,835][9]DEBUG KeepLive 没有找到E12
[2020-08-23 23:58:06,835][9]DEBUG KeepLive 没有找到E14
[2020-08-23 23:58:09,836][9]DEBUG KeepLive 没有找到E15
[2020-08-23 23:58:12,837][9]DEBUG KeepLive 没有找到E21
[2020-08-23 23:58:15,838][9]DEBUG KeepLive 没有找到E22
[2020-08-23 23:58:18,839][9]DEBUG KeepLive 没有找到G1
[2020-08-23 23:58:21,840][9]DEBUG KeepLive 没有找到G2
[2020-08-23 23:58:24,841][9]DEBUG KeepLive 没有找到G3
[2020-08-23 23:58:27,841][9]DEBUG KeepLive 没有找到G4
[2020-08-23 23:58:30,842][9]DEBUG KeepLive 没有找到G5
[2020-08-23 23:58:33,843][9]DEBUG KeepLive 没有找到G6
[2020-08-23 23:58:36,843][9]DEBUG KeepLive 没有找到G7
[2020-08-23 23:58:39,844][9]DEBUG KeepLive 没有找到G8
[2020-08-23 23:58:42,845][9]DEBUG KeepLive 没有找到G9
[2020-08-23 23:58:45,846][9]DEBUG KeepLive 没有找到G10
[2020-08-23 23:58:48,847][9]DEBUG KeepLive 没有找到G14
[2020-08-23 23:58:51,848][9]DEBUG KeepLive 没有找到G15
[2020-08-23 23:58:54,848][9]DEBUG KeepLive 没有找到G21
[2020-08-23 23:58:57,849][9]DEBUG KeepLive 没有找到G22
[2020-08-23 23:59:00,850][9]DEBUG KeepLive 没有找到E16
c80efb32df29ae6d02401af2394727ab4c7b5793
3fb131896028187df2e3607393bdb409455980a9
......@@ -34,7 +34,6 @@ C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug
C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\bin\Debug\Newtonsoft.Json.dll
C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csproj.CoreCompileInputs.cache
C:\ZDL\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csprojAssemblyReference.cache
D:\OneDrive - 上海挚锦科技有限公司\SMD\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csprojAssemblyReference.cache
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl.FrmMain.resources
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl.Properties.Resources.resources
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csproj.GenerateResource.cache
......@@ -51,3 +50,7 @@ C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\bin
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csproj.CopyComplete
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.exe
C:\myproject\Gitee\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.pdb
D:\OneDrive - 上海挚锦科技有限公司\SMD\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\bin\Debug\AsaPL.AgvClient.dll
D:\OneDrive - 上海挚锦科技有限公司\SMD\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\bin\Debug\Newtonsoft.Json.dll
D:\OneDrive - 上海挚锦科技有限公司\SMD\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\bin\Debug\AsaPL.AgvClient.pdb
D:\OneDrive - 上海挚锦科技有限公司\SMD\AGVControl-Qisda-ProductionLine\AGVControl-ProductionLine\obj\Debug\AGVControl-ProductionLine.csprojAssemblyReference.cache
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!