diff --git a/.idea/AutoControlSystem.iml b/.idea/AutoControlSystem.iml index 042213b..5ed0139 100644 --- a/.idea/AutoControlSystem.iml +++ b/.idea/AutoControlSystem.iml @@ -2,7 +2,7 @@ - + diff --git a/.idea/misc.xml b/.idea/misc.xml index 0b962ea..65d6510 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ - + \ No newline at end of file diff --git a/CU/Catch.py b/CU/Catch.py index cd5be19..3df1b72 100644 --- a/CU/Catch.py +++ b/CU/Catch.py @@ -1,10 +1,11 @@ +#!/usr/bin/python3 import time from enum import Enum import Constant from COM.COM_Robot import RobotClient from Util.util_time import CClockPulse, CTon -from EMV import * +from .EMV import * class CatchStatus(Enum): CNone = 0 @@ -37,10 +38,6 @@ class Catch: # 网络继电器 open(1, 0, 0) self.is_send_take_command = True - else: - if self.take_continue.Q(True,self.robotClient.time_delay_take*1000): - self.is_send_take_command = False - self.catch_status = CatchStatus.COk if self.catch_status == CatchStatus.CDrop: if not self.is_send_command: diff --git a/CU/Detect.py b/CU/Detect.py index 5091d45..271e7d7 100644 --- a/CU/Detect.py +++ b/CU/Detect.py @@ -28,7 +28,7 @@ class Detect: return _, img, xyz, uvw, points = self.detection.get_position(Point_isVision=False, Box_isPoint=True, First_Depth=True, Iter_Max_Pixel=30, - save_img_point=0, Height_reduce=30, width_reduce=30) + save_img_point=1, Height_reduce=30, width_reduce=30) self.detection_image = img.copy() if xyz == None or uvw == None or points == None: diff --git a/CU/EMV.py b/CU/EMV.py index f5aefac..9d29e02 100644 --- a/CU/EMV.py +++ b/CU/EMV.py @@ -9,7 +9,7 @@ PORT = 50000 # 电磁阀控制报文 valve_commands = { 1: { - 'open': '00000000000601050000FF00', + 'open': '00000000000601050000FF00',#钢针 'close': '000000000006010500000000', }, 2: { @@ -46,34 +46,38 @@ def send_command(command): return False # 控制电磁阀打开 -def open(grasp, throw, shake): +def open(grasp, shake, throw): if grasp: - print("打开电磁阀 1") # 抓取 + print("打开电磁阀 1") # 钢针关闭 if send_command(valve_commands[1]['open']): - time.sleep(1) # 等待 1 秒 - if throw: - print("打开电磁阀 2") # 扔袋 - if send_command(valve_commands[2]['open']): - time.sleep(1) # 等待 1 秒 + time.sleep(1) if shake: - print("打开电磁阀 3") # 震动 + print("打开电磁阀 2") # 震动 + if send_command(valve_commands[2]['open']): + time.sleep(0.05) + if throw: + print("打开电磁阀 3") # 扔袋 if send_command(valve_commands[3]['open']): - time.sleep(1) # 等待 1 秒 + time.sleep(0.5) # 控制电磁阀关闭 -def close(grasp, throw, shake): +def close(grasp, shake, throw): if grasp: - print("关闭电磁阀 1") + print("关闭电磁阀 1")#钢针打开 if send_command(valve_commands[1]['close']): - time.sleep(1) # 等待 1 秒 - if throw: + time.sleep(1) + if shake: print("关闭电磁阀 2") if send_command(valve_commands[2]['close']): - time.sleep(1) # 等待 1 秒 - if shake: + time.sleep(0.05) + if throw: print("关闭电磁阀 3") if send_command(valve_commands[3]['close']): - time.sleep(1) # 等待 1 秒 + time.sleep(0.5) # 关闭电磁阀 -close(True, True, True) # 参数传True和False +# open(True, False, False) # 参数传True和False +# close(False,False,True) +# for i in range(10): +# open(False,True,True) +# close(True,True,True) diff --git a/CU/Feeding.py b/CU/Feeding.py index 6632980..f560ff1 100644 --- a/CU/Feeding.py +++ b/CU/Feeding.py @@ -322,7 +322,8 @@ class Feeding(QObject): if feed_pos.get_position().compare(real_position): self.log_signal.emit(logging.INFO, Constant.str_feed_mid) self.next_position(self.is_reverse) - + if self.feedStatus == FeedStatus.FTake: + self.catch.catch_status=CatchStatus.CTake elif self.feedStatus == FeedStatus.FPhoto: @@ -444,17 +445,11 @@ class Feeding(QObject): # self.sendIOControl(self.robotClient.con_ios[2], 1) self.log_signal.emit(logging.INFO, "到达抓料点位") - if self.catch.catch_status == CatchStatus.CNone : - self.catch.catch_status = CatchStatus.CTake - return - if self.catch.catch_status == CatchStatus.CTake: - return - if self.catch.catch_status == CatchStatus.COk : - self.catch.catch_status = CatchStatus.CNone - #self.feedConfig.feedLine.set_take_position(None) - # time.sleep(self.robotClient.time_delay_take) - self.log_signal.emit(logging.INFO, Constant.str_feed_take_success) - self.next_position() + #self.feedConfig.feedLine.set_take_position(None) + # time.sleep(self.robotClient.time_delay_take) + self.log_signal.emit(logging.INFO, Constant.str_feed_take_success) + self.next_position() + self.catch.catch_status = CatchStatus.COk else: self.log_signal.emit(logging.ERROR, Constant.str_feed_takePhoto_fail) diff --git a/Config/FeedLine.ini b/Config/FeedLine.ini index 5770eff..2bf676a 100644 --- a/Config/FeedLine.ini +++ b/Config/FeedLine.ini @@ -20,12 +20,12 @@ status = 3 linetype = 0 [Position1] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 1402.887451 +y = 1126.740479 +z = 2000.0 +u = 6.669909 +v = 7.899203 +w = -151.361526 id = 1 order = 4 lineid = 1 @@ -33,12 +33,12 @@ status = 3 linetype = 0 [Position7] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 230.52298 +y = 1879.445435 +z = 2000.432495 +u = 3.915686 +v = 18.44486 +w = -107.223564 id = 7 order = 0 lineid = 1 @@ -46,64 +46,64 @@ status = 3 linetype = 0 [Position8] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 1430.494385 +y = 1765.716187 +z = 2050.0 +u = 1.57722 +v = 4.174088 +w = -87.506218 id = 8 -order = 9 +order = 8 lineid = 1 status = 6 linetype = 0 [Position9] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 1430.492554 +y = 1765.717407 +z = 1832.536255 +u = 1.57702 +v = 4.174215 +w = -87.506783 id = 9 -order = 10 +order = 9 lineid = 1 status = 7 linetype = 0 [Position10] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 1375.01416 +y = 1702.021973 +z = 2117.369385 +u = 8.211453 +v = 4.232689 +w = -100.153625 id = 10 -order = 11 +order = 10 lineid = 1 status = 8 linetype = 0 [Position12] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 2180.736328 +y = 356.33316 +z = 1850.0 +u = 5.812903 +v = 5.431066 +w = -168.01712 id = 12 -order = 12 +order = 11 lineid = 1 status = 9 linetype = 0 [Position2] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 1765.864746 +y = 345.495361 +z = 2000.0 +u = 6.676573 +v = 7.941406 +w = -179.064972 id = 2 order = 3 lineid = 1 @@ -124,12 +124,12 @@ status = 2 linetype = 0 [Position13] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 1351.092285 +y = 1188.34668 +z = 2000.151001 +u = 6.676482 +v = 7.941721 +w = -148.802124 id = 13 order = 1 lineid = 1 @@ -137,12 +137,12 @@ status = 3 linetype = 0 [Position14] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 371.28418 +y = 1757.579224 +z = 2000.0 +u = 7.908469 +v = 6.585917 +w = -95.263153 id = 14 order = 5 lineid = 1 @@ -150,12 +150,12 @@ status = 3 linetype = 0 [Position5] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 352.000519 +y = 1915.820068 +z = 2022.926514 +u = -179.120407 +v = -1.876792 +w = 2.38191 id = 5 order = 6 lineid = 1 @@ -163,41 +163,28 @@ status = 5 linetype = 0 [Position15] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 1765.864746 +y = 345.495361 +z = 2000.0 +u = 6.676573 +v = 7.941406 +w = -179.064972 id = 15 order = 2 lineid = 1 status = 2 linetype = 0 -[Position4] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 -id = 4 +[Position16] +x = 275.882446 +y = 2153.374023 +z = 2050.0 +u = 8.369349 +v = 1.971002 +w = -108.256897 +id = 16 order = 7 lineid = 1 status = 3 linetype = 0 -[Position16] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 -id = 16 -order = 8 -lineid = 1 -status = 3 -linetype = 0 - diff --git a/Constant.py b/Constant.py index bcb81c9..4e114bd 100644 --- a/Constant.py +++ b/Constant.py @@ -1,11 +1,11 @@ import os -Debug = True +Debug = False IO_EmergencyPoint = 2 max_log_len = 100 bag_height = 10 # 一袋的高度 position_accuracy_action = 0.1 #动作时的位置精度6 这个精度要高 必须到位置才做动作 -position_accuracy_command = 6#命令时的位置精度 +position_accuracy_command = 300 #命令时的位置精度 manual_adjust_accuracy = 1 # speed = 10 # shake_speed = 20 diff --git a/Seting.ini b/Seting.ini index dd86660..f7e4c14 100644 --- a/Seting.ini +++ b/Seting.ini @@ -1,7 +1,7 @@ [Main] [Robot_Feed] -ipaddress = 127.0.0.1 +ipaddress = 192.168.20.4 port = 502 j1_min = -150 j1_max = +150 @@ -47,7 +47,7 @@ photo_v5 = 0.0 photo_w5 = 1.0 linecount = 2 remain_linename = 1 -remain_count = 999 +remain_count = 0 io_take_addr = 8 io_zip_addr = 11 io_shake_addr = 12 @@ -56,7 +56,7 @@ putdelay = 0.1 shakedelay = 1.0 max_angle_interval = 20 smooth = 9 -dynamic_height = 520.0 +dynamic_height = 350.0 [Speed] debug_speed = 50 @@ -64,12 +64,12 @@ feed_speed = 550 reset_speed = 35 [Origin] -x = 7.0 -y = 50.0 -z = 1.0 -u = 12.0 -v = 0.0 -w = 1.0 +x = 204.996765 +y = 1455.630493 +z = 2324.525146 +u = 6.460966 +v = 37.462826 +w = -84.569252 [Camera_Feed] ipaddress = 127.0.0.1 diff --git a/Trace/handeye_calibration.py b/Trace/handeye_calibration.py index de2128e..b8ba806 100644 --- a/Trace/handeye_calibration.py +++ b/Trace/handeye_calibration.py @@ -76,7 +76,7 @@ def getPosition(x,y,z,a,b,c,rotation,points): # 单位化方向向量 short_edge_direction = edge_vector / np.linalg.norm(edge_vector) - delta = -30#沿法向量方向抬高和压低,-指表示抬高,+值表示压低 + delta = -200#沿法向量方向抬高和压低,-指表示抬高,+值表示压低 angle = np.asarray([a,b,c]) noraml = camera2robot[:3, :3]@angle normal_vector = noraml / np.linalg.norm(noraml) diff --git a/log/log.log b/log/log.log index feedae0..a8be8ce 100644 --- a/log/log.log +++ b/log/log.log @@ -1,33 +1,3780 @@ -024-12-16 14:46:23 - INFO - ����ϵͳ -2024-12-16 14:46:55 - ERROR - �޻ظ� -2024-12-16 14:47:22 - INFO - �û������˳����� -2024-12-16 15:40:00 - INFO - ����ϵͳ -2024-12-16 15:40:22 - ERROR - ��¼����ʧ�� -2024-12-16 15:40:22 - INFO - �˳�ϵͳ -2024-12-16 15:59:52 - INFO - ����ϵͳ -2024-12-16 16:00:25 - ERROR - �޻ظ� -2024-12-17 09:37:22 - INFO - ����ϵͳ -2024-12-17 09:37:30 - INFO - ����Ͷ�ϴ���:1 -2024-12-17 09:37:31 - INFO - �л����������� -2024-12-17 09:37:31 - INFO - �л����Զ�����״̬ -2024-12-17 09:37:32 - INFO - ��һ��ȷ������ -2024-12-17 09:37:32 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ -2024-12-17 09:37:32 - INFO - ����IO����: 3��1 -2024-12-17 09:37:37 - INFO - ����IO����: 3��0 -2024-12-17 09:37:37 - INFO - Ͷ�Ͽ�ʼ -2024-12-17 09:37:42 - INFO - ������� -2024-12-17 09:37:42 - INFO - Ͷ��ֹͣ -2024-12-17 09:37:44 - INFO - �л����������� -2024-12-17 09:37:44 - INFO - �л����Զ�����״̬ -2024-12-17 09:37:44 - INFO - ������� -2024-12-17 09:37:44 - ERROR - super-class __init__() of type StopDialog was never called -2024-12-17 09:37:44 - ERROR - ��е��δ����ʵ��·�ߵ��ƶ���δ��Ѱ�ҵ�����·����λ -2024-12-17 09:37:44 - INFO - ����IO����: 3��2 -2024-12-17 09:37:44 - INFO - �ƶ���λ��:����ֱ�ߣ�X:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-17 09:37:44 - INFO - ����IO����: 3��0 -2024-12-17 09:37:54 - ERROR - �޻ظ� -2024-12-17 19:35:21 - INFO - ����ϵͳ -2024-12-17 19:35:53 - ERROR - �޻ظ� -2024-12-20 17:01:09 - INFO - ����ϵͳ -2024-12-20 17:01:11 - ERROR - ��¼����ʧ�� -2024-12-20 17:01:11 - INFO - �˳�ϵͳ +2025-02-18 15:57:05 - INFO - ����ϵͳ +2025-02-18 15:57:37 - ERROR - �޻ظ� +2025-02-18 15:57:45 - ERROR - �޻ظ� +2025-02-18 15:57:52 - ERROR - �޻ظ� +2025-02-18 15:58:00 - ERROR - �޻ظ� +2025-02-18 15:58:07 - ERROR - �޻ظ� +2025-02-18 15:58:15 - ERROR - �޻ظ� +2025-02-18 15:58:22 - ERROR - �޻ظ� +2025-02-18 15:58:30 - ERROR - �޻ظ� +2025-02-18 15:58:37 - ERROR - �޻ظ� +2025-02-18 15:58:45 - ERROR - �޻ظ� +2025-02-18 15:58:52 - ERROR - �޻ظ� +2025-02-18 15:58:52 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 15:58:52 - INFO - �л����������� +2025-02-18 15:58:52 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 15:58:52 - INFO - �л����Զ�����״̬ +2025-02-18 15:58:53 - INFO - ������� +2025-02-18 15:58:53 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 15:58:53 - INFO - ��ʼ��λ +2025-02-18 15:58:53 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 15:58:53 - ERROR - ��е��δ����ʵ��·�ߵ��ƶ���δ��Ѱ�ҵ�����·����λ +2025-02-18 15:58:53 - INFO - ����IO����: 2��1 +2025-02-18 15:58:53 - INFO - �ƶ���λ��:����ֱ�ߣ�X:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 +2025-02-18 15:58:53 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 15:58:53 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 15:58:54 - INFO - ����IO����: 2��0 +2025-02-18 15:58:59 - ERROR - �޻ظ� +2025-02-18 15:59:07 - ERROR - �޻ظ� +2025-02-18 15:59:14 - ERROR - �޻ظ� +2025-02-18 15:59:17 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 15:59:17 - INFO - �л����������� +2025-02-18 15:59:17 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 15:59:17 - INFO - �л����Զ�����״̬ +2025-02-18 15:59:17 - INFO - ������� +2025-02-18 15:59:18 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 15:59:18 - INFO - ��ʼ��λ +2025-02-18 15:59:18 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 15:59:18 - ERROR - ��е��δ����ʵ��·�ߵ��ƶ���δ��Ѱ�ҵ�����·����λ +2025-02-18 15:59:18 - INFO - ����IO����: 2��1 +2025-02-18 15:59:18 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 15:59:18 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 15:59:18 - INFO - �ƶ���λ��:����ֱ�ߣ�X:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 +2025-02-18 15:59:18 - INFO - ����IO����: 2��0 +2025-02-18 15:59:22 - ERROR - �޻ظ� +2025-02-18 15:59:29 - ERROR - �޻ظ� +2025-02-18 15:59:31 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 15:59:31 - INFO - �л����������� +2025-02-18 15:59:31 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 15:59:31 - INFO - �л����Զ�����״̬ +2025-02-18 15:59:31 - INFO - ������� +2025-02-18 15:59:31 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 15:59:31 - INFO - ��ʼ��λ +2025-02-18 15:59:32 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 15:59:32 - ERROR - ��е��δ����ʵ��·�ߵ��ƶ���δ��Ѱ�ҵ�����·����λ +2025-02-18 15:59:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 15:59:32 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 15:59:32 - INFO - ����IO����: 2��1 +2025-02-18 15:59:32 - INFO - �ƶ���λ��:����ֱ�ߣ�X:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 +2025-02-18 15:59:32 - INFO - ����IO����: 2��0 +2025-02-18 15:59:37 - ERROR - �޻ظ� +2025-02-18 15:59:44 - ERROR - �޻ظ� +2025-02-18 15:59:52 - ERROR - �޻ظ� +2025-02-18 15:59:59 - ERROR - �޻ظ� +2025-02-18 16:00:07 - ERROR - �޻ظ� +2025-02-18 16:00:14 - ERROR - �޻ظ� +2025-02-18 16:00:22 - ERROR - �޻ظ� +2025-02-18 16:00:29 - ERROR - �޻ظ� +2025-02-18 16:00:37 - ERROR - �޻ظ� +2025-02-18 16:00:38 - INFO - �˳�ϵͳ +2025-02-18 16:00:38 - ERROR - model +2025-02-18 16:14:25 - INFO - ����ϵͳ +2025-02-18 16:16:47 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 16:16:47 - INFO - �л����������� +2025-02-18 16:16:47 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 16:16:47 - INFO - �л����Զ�����״̬ +2025-02-18 16:16:48 - INFO - ��һ��ȷ������ +2025-02-18 16:16:48 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 16:16:48 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 16:16:49 - INFO - ����IO����: 2��1 +2025-02-18 16:16:53 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 16:16:53 - INFO - ����IO����: 2��0 +2025-02-18 16:16:53 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:16:54 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 16:16:54 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 16:16:54 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:16:54 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 16:16:54 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 16:16:57 - INFO - �ƶ�����λλ�� +2025-02-18 16:16:57 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:16:57 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 16:17:02 - INFO - �ƶ�����λλ�� +2025-02-18 16:17:03 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:03 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:17:03 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:03 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:03 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:03 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:03 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:03 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:03 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:04 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:07 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:07 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:17:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:17:07 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:07 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:17:07 - INFO - �ƶ�������λ�� +2025-02-18 16:17:08 - INFO - �ƶ�������λ�� +2025-02-18 16:17:08 - INFO - �ƶ�������λ�� +2025-02-18 16:17:08 - INFO - �ƶ�������λ�� +2025-02-18 16:17:08 - INFO - �ƶ�������λ�� +2025-02-18 16:17:08 - INFO - �ƶ�������λ�� +2025-02-18 16:17:08 - INFO - ʶ��ͼ��ɹ� +2025-02-18 16:17:08 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:08 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:17:08 - INFO - �ƶ�������λ�� +2025-02-18 16:17:09 - INFO - �ƶ�������λ�� +2025-02-18 16:17:09 - INFO - �ƶ�������λ�� +2025-02-18 16:17:09 - INFO - �ƶ�������λ�� +2025-02-18 16:17:09 - INFO - �ƶ�������λ�� +2025-02-18 16:17:09 - INFO - ʶ��ͼ��ɹ� +2025-02-18 16:17:09 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:09 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 16:17:12 - INFO - �ƶ�����λλ�� +2025-02-18 16:17:12 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 16:17:12 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:17 - INFO - �ƶ�����λλ�� +2025-02-18 16:17:17 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"389.8642795054345","m1":"1983.4525508524803","m2":"782.9158423614874","m3":"2.8971651970111103","m4":"1.8936996058434599","m5":"-84.04501034322747","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:17 - INFO - �ƶ���λ��:����ֱ�ߣ�X:389.8642795054345-Y:1983.4525508524803-Z:782.9158423614874-U:2.8971651970111103-V:1.8936996058434599-W:-84.04501034322747 +2025-02-18 16:17:22 - INFO - �ƶ�����λλ�� +2025-02-18 16:17:23 - INFO - �ƶ���λ��:����ֱ�ߣ�X:389.8642795054345-Y:1983.4525508524803-Z:432.9158423614874-U:2.8971651970111103-V:1.8936996058434599-W:-84.04501034322747 +2025-02-18 16:17:23 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"389.8642795054345","m1":"1983.4525508524803","m2":"432.9158423614874","m3":"2.8971651970111103","m4":"1.8936996058434599","m5":"-84.04501034322747","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:23 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:23 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:23 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:23 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:23 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:23 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:23 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:25 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:27 - INFO - ����ץ�ϵ�λ +2025-02-18 16:17:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:28 - INFO - ����ץ�ϵ�λ +2025-02-18 16:17:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:28 - INFO - ����ץ�ϵ�λ +2025-02-18 16:17:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:28 - INFO - ����ץ�ϵ�λ +2025-02-18 16:17:29 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"389.8642795054345","m1":"1983.4525508524803","m2":"782.9158423614874","m3":"2.8971651970111103","m4":"1.8936996058434599","m5":"-84.04501034322747","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:30 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:17:30 - INFO - ����ץ�ϵ�λ +2025-02-18 16:17:30 - INFO - ץ�ϳɹ� +2025-02-18 16:17:30 - INFO - �ƶ���λ��:����ֱ�ߣ�X:389.8642795054345-Y:1983.4525508524803-Z:782.9158423614874-U:2.8971651970111103-V:1.8936996058434599-W:-84.04501034322747 +2025-02-18 16:17:31 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:31 - INFO - �ƶ�����λλ�� +2025-02-18 16:17:31 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 16:17:36 - INFO - �ƶ�����λλ�� +2025-02-18 16:17:36 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:36 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 16:17:41 - INFO - �ƶ����ƴ�λ�� +2025-02-18 16:17:41 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:41 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 16:17:42 - INFO - �ƶ����ƴ�λ�� +2025-02-18 16:17:42 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:17:42 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 16:17:47 - INFO - ҡ�� +2025-02-18 16:17:47 - INFO - ҡ�� +2025-02-18 16:17:47 - INFO - ҡ�� +2025-02-18 16:17:48 - INFO - ҡ�� +2025-02-18 16:17:48 - INFO - ҡ�� +2025-02-18 16:17:48 - INFO - ҡ�� +2025-02-18 16:17:48 - INFO - ҡ�� +2025-02-18 16:17:49 - INFO - ҡ�� +2025-02-18 16:17:49 - INFO - ҡ�� +2025-02-18 16:17:49 - INFO - ҡ�� +2025-02-18 16:17:49 - INFO - ҡ�� +2025-02-18 16:17:49 - INFO - ҡ�� +2025-02-18 16:17:50 - INFO - ҡ�� +2025-02-18 16:17:50 - INFO - ҡ�� +2025-02-18 16:17:50 - INFO - ҡ�� +2025-02-18 16:17:50 - INFO - ҡ�� +2025-02-18 16:17:51 - INFO - ҡ�� +2025-02-18 16:17:51 - INFO - ҡ�� +2025-02-18 16:17:51 - INFO - ҡ�� +2025-02-18 16:17:51 - INFO - ҡ�� +2025-02-18 16:17:51 - INFO - ҡ�� +2025-02-18 16:17:52 - INFO - ҡ�� +2025-02-18 16:17:52 - INFO - ҡ�� +2025-02-18 16:17:52 - INFO - ҡ�� +2025-02-18 16:17:52 - INFO - ҡ�� +2025-02-18 16:17:53 - INFO - ҡ�� +2025-02-18 16:17:53 - INFO - ҡ�� +2025-02-18 16:17:53 - INFO - ҡ�� +2025-02-18 16:17:53 - INFO - ҡ�� +2025-02-18 16:17:53 - INFO - ҡ�� +2025-02-18 16:17:54 - INFO - ҡ�� +2025-02-18 16:17:54 - INFO - ҡ�� +2025-02-18 16:17:54 - INFO - ҡ�� +2025-02-18 16:17:54 - INFO - ҡ�� +2025-02-18 16:17:55 - INFO - ҡ�� +2025-02-18 16:17:55 - INFO - ҡ�� +2025-02-18 16:17:55 - INFO - ҡ�� +2025-02-18 16:17:55 - INFO - ҡ�� +2025-02-18 16:17:55 - INFO - ҡ�� +2025-02-18 16:17:56 - INFO - ҡ�� +2025-02-18 16:17:56 - INFO - ҡ�� +2025-02-18 16:17:56 - INFO - ҡ�� +2025-02-18 16:17:56 - INFO - ҡ�� +2025-02-18 16:17:57 - INFO - ҡ�� +2025-02-18 16:17:57 - INFO - ҡ�� +2025-02-18 16:17:57 - INFO - ҡ�� +2025-02-18 16:17:57 - INFO - ҡ�� +2025-02-18 16:17:57 - INFO - ҡ�� +2025-02-18 16:17:58 - INFO - ҡ�� +2025-02-18 16:17:58 - INFO - ҡ�� +2025-02-18 16:17:58 - INFO - ҡ�� +2025-02-18 16:17:58 - INFO - ҡ�� +2025-02-18 16:17:59 - INFO - ҡ�� +2025-02-18 16:17:59 - INFO - ҡ�� +2025-02-18 16:17:59 - INFO - ҡ�� +2025-02-18 16:17:59 - INFO - ҡ�� +2025-02-18 16:17:59 - INFO - ҡ�� +2025-02-18 16:18:00 - INFO - ҡ�� +2025-02-18 16:18:00 - INFO - ҡ�� +2025-02-18 16:18:00 - INFO - ҡ�� +2025-02-18 16:18:00 - INFO - ҡ�� +2025-02-18 16:18:01 - INFO - ҡ�� +2025-02-18 16:18:01 - INFO - ҡ�� +2025-02-18 16:18:01 - INFO - ҡ�� +2025-02-18 16:18:01 - INFO - ҡ�� +2025-02-18 16:18:01 - INFO - ҡ�� +2025-02-18 16:18:02 - INFO - ҡ�� +2025-02-18 16:18:02 - INFO - ҡ�� +2025-02-18 16:18:02 - INFO - ҡ�� +2025-02-18 16:18:02 - INFO - ҡ�� +2025-02-18 16:18:03 - INFO - ҡ�� +2025-02-18 16:18:03 - INFO - ҡ�� +2025-02-18 16:18:03 - INFO - ҡ�� +2025-02-18 16:18:03 - INFO - ҡ�� +2025-02-18 16:18:03 - INFO - ҡ�� +2025-02-18 16:18:04 - INFO - ҡ�� +2025-02-18 16:18:04 - INFO - ҡ�� +2025-02-18 16:18:04 - INFO - ҡ�� +2025-02-18 16:18:04 - INFO - ҡ�� +2025-02-18 16:18:05 - INFO - ҡ�� +2025-02-18 16:18:05 - INFO - ҡ�� +2025-02-18 16:18:05 - INFO - ҡ�� +2025-02-18 16:18:05 - INFO - ҡ�� +2025-02-18 16:18:05 - INFO - ҡ�� +2025-02-18 16:18:06 - INFO - ҡ�� +2025-02-18 16:18:06 - INFO - ҡ�� +2025-02-18 16:18:06 - INFO - ҡ�� +2025-02-18 16:18:06 - INFO - ҡ�� +2025-02-18 16:18:07 - INFO - ҡ�� +2025-02-18 16:18:07 - INFO - ҡ�� +2025-02-18 16:18:07 - INFO - ҡ�� +2025-02-18 16:18:07 - INFO - ҡ�� +2025-02-18 16:18:07 - INFO - ҡ�� +2025-02-18 16:18:08 - INFO - ҡ�� +2025-02-18 16:18:08 - INFO - ҡ�� +2025-02-18 16:18:08 - INFO - ҡ�� +2025-02-18 16:18:08 - INFO - ҡ�� +2025-02-18 16:18:09 - INFO - ҡ�� +2025-02-18 16:18:09 - INFO - ҡ�� +2025-02-18 16:18:09 - INFO - ҡ�� +2025-02-18 16:18:09 - INFO - ҡ�� +2025-02-18 16:18:09 - INFO - ҡ�� +2025-02-18 16:18:10 - INFO - ҡ�� +2025-02-18 16:18:10 - INFO - ҡ�� +2025-02-18 16:18:10 - INFO - ҡ�� +2025-02-18 16:18:10 - INFO - ҡ�� +2025-02-18 16:18:11 - INFO - ҡ�� +2025-02-18 16:18:11 - INFO - ҡ�� +2025-02-18 16:18:11 - INFO - ҡ�� +2025-02-18 16:18:11 - INFO - ҡ�� +2025-02-18 16:18:12 - INFO - ҡ�� +2025-02-18 16:18:12 - INFO - ҡ�� +2025-02-18 16:18:12 - INFO - ҡ�� +2025-02-18 16:18:12 - INFO - ҡ�� +2025-02-18 16:18:12 - INFO - ҡ�� +2025-02-18 16:18:13 - INFO - ҡ�� +2025-02-18 16:18:13 - INFO - ҡ�� +2025-02-18 16:18:13 - INFO - ҡ�� +2025-02-18 16:18:13 - INFO - ҡ�� +2025-02-18 16:18:14 - INFO - ҡ�� +2025-02-18 16:18:14 - INFO - ҡ�� +2025-02-18 16:18:14 - INFO - ҡ�� +2025-02-18 16:18:14 - INFO - ҡ�� +2025-02-18 16:18:14 - INFO - ҡ�� +2025-02-18 16:18:15 - INFO - ҡ�� +2025-02-18 16:18:15 - INFO - ҡ�� +2025-02-18 16:18:15 - INFO - ҡ�� +2025-02-18 16:18:15 - INFO - ҡ�� +2025-02-18 16:18:16 - INFO - ҡ�� +2025-02-18 16:18:16 - INFO - ҡ�� +2025-02-18 16:18:16 - INFO - ҡ�� +2025-02-18 16:18:16 - INFO - ҡ�� +2025-02-18 16:18:16 - INFO - ҡ�� +2025-02-18 16:18:17 - INFO - ҡ�� +2025-02-18 16:18:17 - INFO - ҡ�� +2025-02-18 16:18:17 - INFO - ҡ�� +2025-02-18 16:18:17 - INFO - ҡ�� +2025-02-18 16:18:18 - INFO - ҡ�� +2025-02-18 16:18:18 - INFO - ҡ�� +2025-02-18 16:18:18 - INFO - ҡ�� +2025-02-18 16:18:18 - INFO - ҡ�� +2025-02-18 16:18:18 - INFO - ҡ�� +2025-02-18 16:18:19 - INFO - ҡ�� +2025-02-18 16:18:19 - INFO - ҡ�� +2025-02-18 16:18:19 - INFO - ҡ�� +2025-02-18 16:18:19 - INFO - ҡ�� +2025-02-18 16:18:20 - INFO - ҡ�� +2025-02-18 16:18:20 - INFO - ҡ�� +2025-02-18 16:18:20 - INFO - ҡ�� +2025-02-18 16:18:20 - INFO - ҡ�� +2025-02-18 16:18:20 - INFO - ҡ�� +2025-02-18 16:18:21 - INFO - ҡ�� +2025-02-18 16:18:21 - INFO - ҡ�� +2025-02-18 16:18:21 - INFO - ҡ�� +2025-02-18 16:18:21 - INFO - ҡ�� +2025-02-18 16:18:22 - INFO - ҡ�� +2025-02-18 16:18:22 - INFO - ҡ�� +2025-02-18 16:18:22 - INFO - ҡ�� +2025-02-18 16:18:22 - INFO - ҡ�� +2025-02-18 16:18:22 - INFO - ҡ�� +2025-02-18 16:18:23 - INFO - ҡ�� +2025-02-18 16:18:23 - INFO - ҡ�� +2025-02-18 16:18:23 - INFO - ҡ�� +2025-02-18 16:18:23 - INFO - ҡ�� +2025-02-18 16:18:24 - INFO - ҡ�� +2025-02-18 16:18:24 - INFO - ҡ�� +2025-02-18 16:18:24 - INFO - ҡ�� +2025-02-18 16:18:24 - INFO - ҡ�� +2025-02-18 16:18:24 - INFO - ҡ�� +2025-02-18 16:18:25 - INFO - ҡ�� +2025-02-18 16:18:25 - INFO - ҡ�� +2025-02-18 16:18:25 - INFO - ҡ�� +2025-02-18 16:18:25 - INFO - ҡ�� +2025-02-18 16:18:26 - INFO - ҡ�� +2025-02-18 16:18:26 - INFO - ҡ�� +2025-02-18 16:18:26 - INFO - ҡ�� +2025-02-18 16:18:26 - INFO - ҡ�� +2025-02-18 16:18:26 - INFO - ҡ�� +2025-02-18 16:18:27 - INFO - ҡ�� +2025-02-18 16:18:27 - INFO - ҡ�� +2025-02-18 16:18:27 - INFO - ҡ�� +2025-02-18 16:18:27 - INFO - ҡ�� +2025-02-18 16:18:28 - INFO - ҡ�� +2025-02-18 16:18:28 - INFO - ҡ�� +2025-02-18 16:18:28 - INFO - ҡ�� +2025-02-18 16:18:28 - INFO - ҡ�� +2025-02-18 16:18:28 - INFO - ҡ�� +2025-02-18 16:18:29 - INFO - ҡ�� +2025-02-18 16:18:29 - INFO - ҡ�� +2025-02-18 16:18:29 - INFO - Ͷ����ͣ +2025-02-18 16:18:29 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","1"]} +2025-02-18 16:18:31 - INFO - ������� +2025-02-18 16:18:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:18:32 - INFO - Ͷ��ֹͣ +2025-02-18 16:18:34 - INFO - ������� +2025-02-18 16:18:34 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:18:34 - INFO - Ͷ��ֹͣ +2025-02-18 16:18:34 - INFO - ������� +2025-02-18 16:18:34 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:18:35 - INFO - Ͷ��ֹͣ +2025-02-18 16:18:35 - INFO - ������� +2025-02-18 16:18:35 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:18:35 - INFO - Ͷ��ֹͣ +2025-02-18 16:18:35 - INFO - ������� +2025-02-18 16:18:35 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:18:35 - INFO - Ͷ��ֹͣ +2025-02-18 16:18:35 - INFO - ������� +2025-02-18 16:18:35 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:18:36 - INFO - Ͷ��ֹͣ +2025-02-18 16:18:36 - INFO - ������� +2025-02-18 16:18:36 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:18:36 - INFO - Ͷ��ֹͣ +2025-02-18 16:18:36 - INFO - ������� +2025-02-18 16:18:36 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:18:36 - INFO - Ͷ��ֹͣ +2025-02-18 16:19:20 - INFO - ������� +2025-02-18 16:19:20 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:19:20 - INFO - Ͷ��ֹͣ +2025-02-18 16:19:20 - INFO - ������� +2025-02-18 16:19:20 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:19:20 - INFO - Ͷ��ֹͣ +2025-02-18 16:19:20 - INFO - ������� +2025-02-18 16:19:20 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:19:20 - INFO - Ͷ��ֹͣ +2025-02-18 16:19:21 - INFO - ������� +2025-02-18 16:19:21 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:19:21 - INFO - Ͷ��ֹͣ +2025-02-18 16:19:21 - INFO - �˳�ϵͳ +2025-02-18 16:19:21 - ERROR - model +2025-02-18 16:21:50 - INFO - ����ϵͳ +2025-02-18 16:21:56 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 16:21:56 - INFO - �л����������� +2025-02-18 16:21:57 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 16:21:57 - INFO - �л����Զ�����״̬ +2025-02-18 16:21:57 - INFO - ������� +2025-02-18 16:21:57 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:21:57 - INFO - ��ʼ��λ +2025-02-18 16:21:57 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 16:21:57 - INFO - ����IO����: 2��1 +2025-02-18 16:21:57 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:21:57 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 16:21:58 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:21:58 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 16:22:02 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:02 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 16:22:05 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:06 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 16:22:13 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:14 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 16:22:18 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:18 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 16:22:26 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:26 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:22:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:32 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:22:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:32 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 16:22:38 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:39 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 16:22:47 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:22:47 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 16:22:47 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 16:22:47 - INFO - ����IO����: 2��0 +2025-02-18 16:22:58 - INFO - ��һ��ȷ������ +2025-02-18 16:22:58 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 16:22:58 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 16:22:58 - INFO - ����IO����: 2��1 +2025-02-18 16:23:03 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 16:23:03 - INFO - ����IO����: 2��0 +2025-02-18 16:23:03 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 16:23:04 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 16:23:04 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:04 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:04 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 16:23:04 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 16:23:06 - INFO - �ƶ�����λλ�� +2025-02-18 16:23:07 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:07 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 16:23:12 - INFO - �ƶ�����λλ�� +2025-02-18 16:23:12 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:12 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:13 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:14 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:15 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:16 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:17 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:17 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:17 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:17 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:23:17 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:23:17 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:17 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:23:17 - INFO - �ƶ�������λ�� +2025-02-18 16:23:17 - INFO - �ƶ�������λ�� +2025-02-18 16:23:18 - INFO - �ƶ�������λ�� +2025-02-18 16:23:18 - INFO - �ƶ�������λ�� +2025-02-18 16:23:18 - INFO - �ƶ�������λ�� +2025-02-18 16:23:18 - INFO - �ƶ�������λ�� +2025-02-18 16:23:18 - INFO - ʶ��ͼ��ɹ� +2025-02-18 16:23:18 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:18 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:23:18 - INFO - �ƶ�������λ�� +2025-02-18 16:23:18 - INFO - �ƶ�������λ�� +2025-02-18 16:23:19 - INFO - �ƶ�������λ�� +2025-02-18 16:23:19 - INFO - �ƶ�������λ�� +2025-02-18 16:23:19 - INFO - �ƶ�������λ�� +2025-02-18 16:23:19 - INFO - ʶ��ͼ��ɹ� +2025-02-18 16:23:19 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:19 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 16:23:22 - INFO - �ƶ�����λλ�� +2025-02-18 16:23:22 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:22 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 16:23:27 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"393.0359830050228","m1":"1977.748524588147","m2":"777.7040968666822","m3":"2.9856848435954","m4":"3.6529064560939246","m5":"-83.95973357622053","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:27 - INFO - �ƶ�����λλ�� +2025-02-18 16:23:27 - INFO - �ƶ���λ��:����ֱ�ߣ�X:393.0359830050228-Y:1977.748524588147-Z:777.7040968666822-U:2.9856848435954-V:3.6529064560939246-W:-83.95973357622053 +2025-02-18 16:23:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"393.0359830050228","m1":"1977.748524588147","m2":"427.7040968666822","m3":"2.9856848435954","m4":"3.6529064560939246","m5":"-83.95973357622053","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:32 - INFO - �ƶ�����λλ�� +2025-02-18 16:23:33 - INFO - �ƶ���λ��:����ֱ�ߣ�X:393.0359830050228-Y:1977.748524588147-Z:427.7040968666822-U:2.9856848435954-V:3.6529064560939246-W:-83.95973357622053 +2025-02-18 16:23:33 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:33 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:33 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:33 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:33 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:33 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:33 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:33 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:34 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:35 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:36 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:36 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:36 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:36 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:36 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:36 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:36 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:36 - INFO - ����ץ�ϵ�λ +2025-02-18 16:23:37 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:37 - INFO - ����ץ�ϵ�λ +2025-02-18 16:23:37 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:38 - INFO - ����ץ�ϵ�λ +2025-02-18 16:23:38 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:38 - INFO - ����ץ�ϵ�λ +2025-02-18 16:23:39 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:23:39 - INFO - ����ץ�ϵ�λ +2025-02-18 16:23:39 - INFO - ץ�ϳɹ� +2025-02-18 16:23:40 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"393.0359830050228","m1":"1977.748524588147","m2":"777.7040968666822","m3":"2.9856848435954","m4":"3.6529064560939246","m5":"-83.95973357622053","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:40 - INFO - �ƶ���λ��:����ֱ�ߣ�X:393.0359830050228-Y:1977.748524588147-Z:777.7040968666822-U:2.9856848435954-V:3.6529064560939246-W:-83.95973357622053 +2025-02-18 16:23:41 - INFO - �ƶ�����λλ�� +2025-02-18 16:23:41 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 16:23:41 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:46 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:46 - INFO - �ƶ�����λλ�� +2025-02-18 16:23:46 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 16:23:51 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:51 - INFO - �ƶ����ƴ�λ�� +2025-02-18 16:23:51 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 16:23:52 - INFO - �ƶ����ƴ�λ�� +2025-02-18 16:23:52 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:23:52 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 16:23:57 - INFO - ҡ�� +2025-02-18 16:23:57 - INFO - ҡ�� +2025-02-18 16:23:57 - INFO - ҡ�� +2025-02-18 16:23:58 - INFO - ҡ�� +2025-02-18 16:23:58 - INFO - ҡ�� +2025-02-18 16:23:58 - INFO - ҡ�� +2025-02-18 16:23:58 - INFO - ҡ�� +2025-02-18 16:23:58 - INFO - ҡ�� +2025-02-18 16:23:59 - INFO - ҡ�� +2025-02-18 16:23:59 - INFO - ҡ�� +2025-02-18 16:23:59 - INFO - ҡ�� +2025-02-18 16:23:59 - INFO - ҡ�� +2025-02-18 16:24:00 - INFO - ҡ�� +2025-02-18 16:24:00 - INFO - ҡ�� +2025-02-18 16:24:00 - INFO - ҡ�� +2025-02-18 16:24:00 - INFO - ҡ�� +2025-02-18 16:24:00 - INFO - ҡ�� +2025-02-18 16:24:01 - INFO - ҡ�� +2025-02-18 16:24:01 - INFO - ҡ�� +2025-02-18 16:24:01 - INFO - �û������˳����� +2025-02-18 16:29:14 - INFO - ����ϵͳ +2025-02-18 16:29:20 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 16:29:20 - INFO - �л����������� +2025-02-18 16:29:20 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 16:29:20 - INFO - �л����Զ�����״̬ +2025-02-18 16:29:20 - INFO - ������� +2025-02-18 16:29:20 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:29:20 - INFO - ��ʼ��λ +2025-02-18 16:29:20 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 16:29:21 - INFO - ����IO����: 2��1 +2025-02-18 16:29:21 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:21 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 16:29:21 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:21 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 16:29:25 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:25 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 16:29:28 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:29 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 16:29:36 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:36 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 16:29:41 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:41 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 16:29:48 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:49 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:29:55 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:29:55 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:55 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:29:55 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 16:30:01 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:30:01 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 16:30:10 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:30:10 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 16:30:10 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 16:30:10 - INFO - ����IO����: 2��0 +2025-02-18 16:30:51 - INFO - ��һ��ȷ������ +2025-02-18 16:30:51 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 16:30:51 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 16:30:51 - INFO - ����IO����: 2��1 +2025-02-18 16:30:56 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 16:30:56 - INFO - ����IO����: 2��0 +2025-02-18 16:30:56 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:30:56 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 16:30:56 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 16:30:57 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:30:57 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 16:30:57 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 16:30:59 - INFO - �ƶ�����λλ�� +2025-02-18 16:30:59 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:00 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 16:31:05 - INFO - �ƶ�����λλ�� +2025-02-18 16:31:05 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:05 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:31:05 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:06 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:07 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:08 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:09 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:10 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:10 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:10 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:31:10 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 16:31:10 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:31:10 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:10 - INFO - �ƶ�������λ�� +2025-02-18 16:31:10 - INFO - �ƶ�������λ�� +2025-02-18 16:31:10 - INFO - �ƶ�������λ�� +2025-02-18 16:31:11 - INFO - �ƶ�������λ�� +2025-02-18 16:31:11 - INFO - �ƶ�������λ�� +2025-02-18 16:31:11 - INFO - ʶ��ͼ��ɹ� +2025-02-18 16:31:11 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:11 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:31:11 - INFO - �ƶ�������λ�� +2025-02-18 16:31:11 - INFO - �ƶ�������λ�� +2025-02-18 16:31:11 - INFO - �ƶ�������λ�� +2025-02-18 16:31:11 - INFO - �ƶ�������λ�� +2025-02-18 16:31:12 - INFO - �ƶ�������λ�� +2025-02-18 16:31:12 - INFO - ʶ��ͼ��ɹ� +2025-02-18 16:31:12 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:12 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 16:31:15 - INFO - �ƶ�����λλ�� +2025-02-18 16:31:15 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 16:31:15 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:20 - INFO - �ƶ�����λλ�� +2025-02-18 16:31:20 - INFO - �ƶ���λ��:����ֱ�ߣ�X:390.13930871773806-Y:1986.006943258335-Z:782.9053475694859-U:2.7476924852600297-V:1.9961266241169653-W:-84.06733747303139 +2025-02-18 16:31:20 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"390.13930871773806","m1":"1986.006943258335","m2":"782.9053475694859","m3":"2.7476924852600297","m4":"1.9961266241169653","m5":"-84.06733747303139","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:25 - INFO - �ƶ�����λλ�� +2025-02-18 16:31:25 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"390.13930871773806","m1":"1986.006943258335","m2":"432.9053475694859","m3":"2.7476924852600297","m4":"1.9961266241169653","m5":"-84.06733747303139","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:25 - INFO - �ƶ���λ��:����ֱ�ߣ�X:390.13930871773806-Y:1986.006943258335-Z:432.9053475694859-U:2.7476924852600297-V:1.9961266241169653-W:-84.06733747303139 +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:26 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:27 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:28 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:29 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:29 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:29 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:29 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:29 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:29 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:29 - INFO - ����ץ�ϵ�λ +2025-02-18 16:31:30 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:30 - INFO - ����ץ�ϵ�λ +2025-02-18 16:31:30 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:30 - INFO - ����ץ�ϵ�λ +2025-02-18 16:31:30 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:31 - INFO - ����ץ�ϵ�λ +2025-02-18 16:31:32 - INFO - �ƶ���ץ��λ�� +2025-02-18 16:31:32 - INFO - ����ץ�ϵ�λ +2025-02-18 16:31:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"390.13930871773806","m1":"1986.006943258335","m2":"782.9053475694859","m3":"2.7476924852600297","m4":"1.9961266241169653","m5":"-84.06733747303139","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:32 - INFO - ץ�ϳɹ� +2025-02-18 16:31:33 - INFO - �ƶ���λ��:����ֱ�ߣ�X:390.13930871773806-Y:1986.006943258335-Z:782.9053475694859-U:2.7476924852600297-V:1.9961266241169653-W:-84.06733747303139 +2025-02-18 16:31:33 - INFO - �ƶ�����λλ�� +2025-02-18 16:31:34 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 16:31:34 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:39 - INFO - �ƶ�����λλ�� +2025-02-18 16:31:39 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:39 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 16:31:44 - INFO - �ƶ����ƴ�λ�� +2025-02-18 16:31:44 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:44 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 16:31:44 - INFO - �ƶ����ƴ�λ�� +2025-02-18 16:31:44 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 16:31:44 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:31:50 - INFO - ҡ�� +2025-02-18 16:31:52 - INFO - ҡ�� +2025-02-18 16:31:54 - INFO - ҡ�� +2025-02-18 16:31:57 - INFO - ҡ�� +2025-02-18 16:31:59 - INFO - ҡ�� +2025-02-18 16:44:55 - INFO - ����ϵͳ +2025-02-18 16:45:01 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 16:45:01 - INFO - �л����������� +2025-02-18 16:45:01 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 16:45:01 - INFO - �л����Զ�����״̬ +2025-02-18 16:45:02 - INFO - ������� +2025-02-18 16:45:02 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:45:02 - INFO - ��ʼ��λ +2025-02-18 16:45:02 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 16:45:02 - INFO - ����IO����: 2��1 +2025-02-18 16:45:02 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 16:45:02 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:45:02 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:45:02 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 16:45:07 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:45:07 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 16:45:10 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:45:10 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 16:45:18 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:45:18 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 16:45:22 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:45:22 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 16:45:55 - INFO - ������� +2025-02-18 16:45:55 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:45:55 - INFO - Ͷ��ֹͣ +2025-02-18 16:55:43 - INFO - ������� +2025-02-18 16:55:43 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 16:55:43 - INFO - ��ʼ��λ +2025-02-18 16:55:43 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 16:55:44 - ERROR - ��е��δ����ʵ��·�ߵ��ƶ���δ��Ѱ�ҵ�����·����λ +2025-02-18 16:55:44 - INFO - ����IO����: 2��1 +2025-02-18 16:55:44 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 16:55:44 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:55:50 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:55:50 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 16:55:58 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:55:58 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:56:04 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:56:05 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 16:56:05 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:56:05 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 16:56:11 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:56:11 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 16:56:20 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 16:56:20 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 16:56:20 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 16:56:20 - INFO - ����IO����: 2��0 +2025-02-18 17:00:23 - INFO - ����ϵͳ +2025-02-18 17:00:27 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 17:00:27 - INFO - �л����������� +2025-02-18 17:00:27 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 17:00:28 - INFO - �л����Զ�����״̬ +2025-02-18 17:00:29 - ERROR - ����������42 +2025-02-18 17:00:29 - ERROR - ����������42 +2025-02-18 17:00:29 - INFO - ��һ��ȷ������ +2025-02-18 17:00:29 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 17:00:29 - ERROR - ����������42 +2025-02-18 17:00:29 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:00:29 - INFO - ����IO����: 2��1 +2025-02-18 17:00:29 - ERROR - ����������42 +2025-02-18 17:00:30 - ERROR - ����������42 +2025-02-18 17:00:30 - ERROR - ����������42 +2025-02-18 17:00:30 - ERROR - ����������42 +2025-02-18 17:00:30 - ERROR - ����������42 +2025-02-18 17:00:30 - ERROR - ����������42 +2025-02-18 17:00:30 - ERROR - ����������42 +2025-02-18 17:00:31 - ERROR - ����������42 +2025-02-18 17:00:31 - ERROR - ����������42 +2025-02-18 17:00:31 - ERROR - ����������42 +2025-02-18 17:00:31 - ERROR - ����������42 +2025-02-18 17:00:33 - INFO - ������� +2025-02-18 17:00:33 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:00:34 - ERROR - 'NoneType' object has no attribute 'num' +2025-02-18 17:00:34 - INFO - ������� +2025-02-18 17:00:34 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:00:34 - ERROR - 'NoneType' object has no attribute 'num' +2025-02-18 17:00:34 - INFO - ������� +2025-02-18 17:00:34 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:00:34 - ERROR - 'NoneType' object has no attribute 'num' +2025-02-18 17:00:34 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:00:34 - INFO - ����IO����: 2��0 +2025-02-18 17:00:35 - INFO - ������� +2025-02-18 17:00:35 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:00:35 - INFO - Ͷ��ֹͣ +2025-02-18 17:00:35 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 17:00:35 - INFO - �л����������� +2025-02-18 17:00:36 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 17:00:36 - INFO - �л����Զ�����״̬ +2025-02-18 17:00:36 - INFO - ��һ��ȷ������ +2025-02-18 17:00:36 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 17:00:36 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:00:36 - INFO - ����IO����: 2��1 +2025-02-18 17:00:41 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:00:41 - INFO - ����IO����: 2��0 +2025-02-18 17:00:41 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:00:42 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 17:00:42 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:00:42 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:00:42 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:00:42 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 17:00:45 - INFO - �ƶ�����λλ�� +2025-02-18 17:00:45 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:00:45 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 17:00:50 - INFO - �ƶ�����λλ�� +2025-02-18 17:00:51 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:00:51 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:00:51 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:51 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:51 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:51 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:51 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:51 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:51 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:52 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:53 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:55 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:00:55 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:00:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:00:55 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:00:55 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:00:55 - INFO - �ƶ�������λ�� +2025-02-18 17:00:56 - INFO - �ƶ�������λ�� +2025-02-18 17:00:56 - INFO - �ƶ�������λ�� +2025-02-18 17:00:56 - INFO - �ƶ�������λ�� +2025-02-18 17:00:56 - INFO - �ƶ�������λ�� +2025-02-18 17:00:56 - INFO - ʶ��ͼ��ɹ� +2025-02-18 17:00:56 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:00:56 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:00:56 - INFO - �ƶ�������λ�� +2025-02-18 17:00:56 - INFO - �ƶ�������λ�� +2025-02-18 17:00:57 - INFO - �ƶ�������λ�� +2025-02-18 17:00:57 - INFO - �ƶ�������λ�� +2025-02-18 17:00:57 - INFO - �ƶ�������λ�� +2025-02-18 17:00:57 - INFO - ʶ��ͼ��ɹ� +2025-02-18 17:00:57 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:00:57 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 17:01:00 - INFO - �ƶ�����λλ�� +2025-02-18 17:01:00 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 17:01:00 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:01:05 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"391.8207008623021","m1":"1981.3382036738308","m2":"786.9157123448015","m3":"2.408798660641214","m4":"2.515892075351945","m5":"-83.9809262688638","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:01:05 - INFO - �ƶ�����λλ�� +2025-02-18 17:01:05 - INFO - �ƶ���λ��:����ֱ�ߣ�X:391.8207008623021-Y:1981.3382036738308-Z:786.9157123448015-U:2.408798660641214-V:2.515892075351945-W:-83.9809262688638 +2025-02-18 17:01:10 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"391.8207008623021","m1":"1981.3382036738308","m2":"436.9157123448015","m3":"2.408798660641214","m4":"2.515892075351945","m5":"-83.9809262688638","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:01:10 - INFO - �ƶ�����λλ�� +2025-02-18 17:01:10 - INFO - �ƶ���λ��:����ֱ�ߣ�X:391.8207008623021-Y:1981.3382036738308-Z:436.9157123448015-U:2.408798660641214-V:2.515892075351945-W:-83.9809262688638 +2025-02-18 17:01:10 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:10 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:11 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:12 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:13 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:15 - INFO - ����ץ�ϵ�λ +2025-02-18 17:01:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:16 - INFO - ����ץ�ϵ�λ +2025-02-18 17:01:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:16 - INFO - ����ץ�ϵ�λ +2025-02-18 17:01:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:16 - INFO - ����ץ�ϵ�λ +2025-02-18 17:01:17 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"391.8207008623021","m1":"1981.3382036738308","m2":"786.9157123448015","m3":"2.408798660641214","m4":"2.515892075351945","m5":"-83.9809262688638","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:01:18 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:01:18 - INFO - ����ץ�ϵ�λ +2025-02-18 17:01:18 - INFO - ץ�ϳɹ� +2025-02-18 17:01:18 - INFO - �ƶ���λ��:����ֱ�ߣ�X:391.8207008623021-Y:1981.3382036738308-Z:786.9157123448015-U:2.408798660641214-V:2.515892075351945-W:-83.9809262688638 +2025-02-18 17:01:19 - INFO - �ƶ�����λλ�� +2025-02-18 17:01:19 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 17:01:19 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:01:24 - INFO - �ƶ�����λλ�� +2025-02-18 17:01:24 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:01:24 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 17:01:29 - INFO - �ƶ����ƴ�λ�� +2025-02-18 17:01:29 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:01:29 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 17:01:30 - INFO - �ƶ����ƴ�λ�� +2025-02-18 17:01:30 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:01:30 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 17:01:35 - INFO - ҡ�� +2025-02-18 17:01:35 - INFO - ҡ�� +2025-02-18 17:01:36 - INFO - ҡ�� +2025-02-18 17:01:36 - INFO - ҡ�� +2025-02-18 17:01:36 - INFO - ҡ�� +2025-02-18 17:01:36 - INFO - ҡ�� +2025-02-18 17:01:37 - INFO - ҡ�� +2025-02-18 17:01:37 - INFO - ҡ�� +2025-02-18 17:01:37 - INFO - ҡ�� +2025-02-18 17:01:37 - INFO - ҡ�� +2025-02-18 17:01:37 - INFO - ҡ�� +2025-02-18 17:01:38 - INFO - ҡ�� +2025-02-18 17:01:38 - INFO - ҡ�� +2025-02-18 17:01:38 - INFO - ҡ�� +2025-02-18 17:01:38 - INFO - ҡ�� +2025-02-18 17:01:39 - INFO - ҡ�� +2025-02-18 17:01:39 - INFO - ҡ�� +2025-02-18 17:01:39 - INFO - ҡ�� +2025-02-18 17:01:39 - INFO - ҡ�� +2025-02-18 17:01:39 - INFO - ҡ�� +2025-02-18 17:01:40 - INFO - ҡ�� +2025-02-18 17:01:40 - INFO - ҡ�� +2025-02-18 17:01:40 - INFO - ҡ�� +2025-02-18 17:01:40 - INFO - ҡ�� +2025-02-18 17:01:41 - INFO - ҡ�� +2025-02-18 17:01:41 - INFO - ҡ�� +2025-02-18 17:01:41 - INFO - ҡ�� +2025-02-18 17:01:41 - INFO - ҡ�� +2025-02-18 17:01:41 - INFO - ҡ�� +2025-02-18 17:01:42 - INFO - ҡ�� +2025-02-18 17:01:42 - INFO - ҡ�� +2025-02-18 17:01:42 - INFO - ҡ�� +2025-02-18 17:01:42 - INFO - ҡ�� +2025-02-18 17:01:43 - INFO - ҡ�� +2025-02-18 17:01:43 - INFO - ҡ�� +2025-02-18 17:01:43 - INFO - ҡ�� +2025-02-18 17:01:43 - INFO - ҡ�� +2025-02-18 17:01:43 - INFO - ҡ�� +2025-02-18 17:01:44 - INFO - ҡ�� +2025-02-18 17:01:44 - INFO - ҡ�� +2025-02-18 17:01:44 - INFO - ҡ�� +2025-02-18 17:01:44 - INFO - ҡ�� +2025-02-18 17:01:45 - INFO - ҡ�� +2025-02-18 17:01:45 - INFO - ҡ�� +2025-02-18 17:01:45 - INFO - ҡ�� +2025-02-18 17:01:45 - INFO - ҡ�� +2025-02-18 17:01:45 - INFO - ҡ�� +2025-02-18 17:01:46 - INFO - ҡ�� +2025-02-18 17:01:46 - INFO - ҡ�� +2025-02-18 17:01:46 - INFO - ҡ�� +2025-02-18 17:01:46 - INFO - ҡ�� +2025-02-18 17:01:47 - INFO - ҡ�� +2025-02-18 17:01:47 - INFO - ҡ�� +2025-02-18 17:01:47 - INFO - ҡ�� +2025-02-18 17:01:47 - INFO - ҡ�� +2025-02-18 17:01:47 - INFO - ҡ�� +2025-02-18 17:01:48 - INFO - ҡ�� +2025-02-18 17:01:48 - INFO - ҡ�� +2025-02-18 17:01:48 - INFO - ҡ�� +2025-02-18 17:01:48 - INFO - ҡ�� +2025-02-18 17:01:49 - INFO - ҡ�� +2025-02-18 17:01:49 - INFO - ҡ�� +2025-02-18 17:01:49 - INFO - ҡ�� +2025-02-18 17:01:49 - INFO - ҡ�� +2025-02-18 17:01:49 - INFO - ҡ�� +2025-02-18 17:01:50 - INFO - ҡ�� +2025-02-18 17:01:50 - INFO - ҡ�� +2025-02-18 17:01:50 - INFO - ҡ�� +2025-02-18 17:01:50 - INFO - ҡ�� +2025-02-18 17:01:51 - INFO - ҡ�� +2025-02-18 17:01:51 - INFO - ҡ�� +2025-02-18 17:01:51 - INFO - ҡ�� +2025-02-18 17:01:51 - INFO - ҡ�� +2025-02-18 17:01:51 - INFO - ҡ�� +2025-02-18 17:01:52 - INFO - ҡ�� +2025-02-18 17:01:52 - INFO - ҡ�� +2025-02-18 17:01:52 - INFO - ҡ�� +2025-02-18 17:01:52 - INFO - ҡ�� +2025-02-18 17:01:53 - INFO - ҡ�� +2025-02-18 17:01:53 - INFO - ҡ�� +2025-02-18 17:01:53 - INFO - ҡ�� +2025-02-18 17:01:53 - INFO - ҡ�� +2025-02-18 17:01:53 - INFO - ҡ�� +2025-02-18 17:01:54 - INFO - ҡ�� +2025-02-18 17:01:54 - INFO - ҡ�� +2025-02-18 17:01:54 - INFO - ҡ�� +2025-02-18 17:01:54 - INFO - ҡ�� +2025-02-18 17:01:55 - INFO - ҡ�� +2025-02-18 17:01:55 - INFO - ҡ�� +2025-02-18 17:01:55 - INFO - ҡ�� +2025-02-18 17:01:55 - INFO - ҡ�� +2025-02-18 17:01:55 - INFO - ҡ�� +2025-02-18 17:01:56 - INFO - ҡ�� +2025-02-18 17:01:56 - INFO - ҡ�� +2025-02-18 17:01:56 - INFO - ҡ�� +2025-02-18 17:01:56 - INFO - ҡ�� +2025-02-18 17:01:57 - INFO - ҡ�� +2025-02-18 17:01:57 - INFO - ҡ�� +2025-02-18 17:01:57 - INFO - ҡ�� +2025-02-18 17:01:57 - INFO - ҡ�� +2025-02-18 17:01:57 - INFO - ҡ�� +2025-02-18 17:01:58 - INFO - ҡ�� +2025-02-18 17:01:58 - INFO - ҡ�� +2025-02-18 17:01:58 - INFO - ҡ�� +2025-02-18 17:01:58 - INFO - ҡ�� +2025-02-18 17:01:59 - INFO - ҡ�� +2025-02-18 17:01:59 - INFO - ҡ�� +2025-02-18 17:01:59 - INFO - ҡ�� +2025-02-18 17:01:59 - INFO - ҡ�� +2025-02-18 17:01:59 - INFO - ҡ�� +2025-02-18 17:02:00 - INFO - ҡ�� +2025-02-18 17:02:00 - INFO - ҡ�� +2025-02-18 17:02:00 - INFO - ҡ�� +2025-02-18 17:02:00 - INFO - ҡ�� +2025-02-18 17:02:01 - INFO - ҡ�� +2025-02-18 17:02:01 - INFO - ҡ�� +2025-02-18 17:02:01 - INFO - ҡ�� +2025-02-18 17:02:01 - INFO - ҡ�� +2025-02-18 17:02:01 - INFO - ҡ�� +2025-02-18 17:02:02 - INFO - ҡ�� +2025-02-18 17:02:02 - INFO - ҡ�� +2025-02-18 17:02:02 - INFO - ҡ�� +2025-02-18 17:02:02 - INFO - ҡ�� +2025-02-18 17:02:03 - INFO - ҡ�� +2025-02-18 17:02:03 - INFO - ҡ�� +2025-02-18 17:02:03 - INFO - ҡ�� +2025-02-18 17:02:03 - INFO - ҡ�� +2025-02-18 17:02:03 - INFO - ҡ�� +2025-02-18 17:02:04 - INFO - ҡ�� +2025-02-18 17:02:04 - INFO - ҡ�� +2025-02-18 17:02:04 - INFO - ҡ�� +2025-02-18 17:02:04 - INFO - ҡ�� +2025-02-18 17:02:05 - INFO - ҡ�� +2025-02-18 17:02:05 - INFO - ҡ�� +2025-02-18 17:02:05 - INFO - ҡ�� +2025-02-18 17:02:05 - INFO - ҡ�� +2025-02-18 17:02:05 - INFO - ҡ�� +2025-02-18 17:02:06 - INFO - ҡ�� +2025-02-18 17:02:06 - INFO - ҡ�� +2025-02-18 17:02:06 - INFO - ҡ�� +2025-02-18 17:02:06 - INFO - ҡ�� +2025-02-18 17:02:07 - INFO - ҡ�� +2025-02-18 17:02:07 - INFO - ҡ�� +2025-02-18 17:02:07 - INFO - ҡ�� +2025-02-18 17:02:07 - INFO - ҡ�� +2025-02-18 17:02:07 - INFO - ҡ�� +2025-02-18 17:02:08 - INFO - ҡ�� +2025-02-18 17:02:08 - INFO - ҡ�� +2025-02-18 17:02:08 - INFO - ҡ�� +2025-02-18 17:02:08 - INFO - ҡ�� +2025-02-18 17:02:09 - INFO - ҡ�� +2025-02-18 17:02:09 - INFO - ҡ�� +2025-02-18 17:02:09 - INFO - ҡ�� +2025-02-18 17:02:09 - INFO - ҡ�� +2025-02-18 17:02:09 - INFO - ҡ�� +2025-02-18 17:02:10 - INFO - ҡ�� +2025-02-18 17:02:10 - INFO - ҡ�� +2025-02-18 17:02:10 - INFO - ҡ�� +2025-02-18 17:02:10 - INFO - ҡ�� +2025-02-18 17:02:11 - INFO - ҡ�� +2025-02-18 17:02:11 - INFO - ҡ�� +2025-02-18 17:02:11 - INFO - ҡ�� +2025-02-18 17:02:11 - INFO - ҡ�� +2025-02-18 17:02:11 - INFO - ҡ�� +2025-02-18 17:02:12 - INFO - ҡ�� +2025-02-18 17:02:12 - INFO - ҡ�� +2025-02-18 17:02:12 - INFO - ҡ�� +2025-02-18 17:02:12 - INFO - ҡ�� +2025-02-18 17:02:13 - INFO - ҡ�� +2025-02-18 17:02:13 - INFO - ҡ�� +2025-02-18 17:02:13 - INFO - ҡ�� +2025-02-18 17:02:13 - INFO - ҡ�� +2025-02-18 17:02:13 - INFO - ҡ�� +2025-02-18 17:02:14 - INFO - ������� +2025-02-18 17:02:14 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:02:14 - INFO - Ͷ��ֹͣ +2025-02-18 17:02:18 - INFO - ������� +2025-02-18 17:02:18 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:02:18 - INFO - Ͷ��ֹͣ +2025-02-18 17:02:22 - INFO - �˳�ϵͳ +2025-02-18 17:04:28 - INFO - ����ϵͳ +2025-02-18 17:04:31 - INFO - ������� +2025-02-18 17:04:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:04:32 - INFO - ��ʼ��λ +2025-02-18 17:04:32 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:04:32 - INFO - ����IO����: 2��1 +2025-02-18 17:04:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:04:32 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 17:04:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:04:32 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 17:04:36 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:04:36 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 17:04:40 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:04:40 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 17:04:48 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:04:48 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 17:04:52 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:04:52 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 17:05:00 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:00 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:05:06 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:06 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:05:06 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 17:05:06 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:13 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:13 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 17:05:21 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:21 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:05:21 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 17:05:21 - INFO - ����IO����: 2��0 +2025-02-18 17:05:28 - INFO - ��һ��ȷ������ +2025-02-18 17:05:28 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 17:05:28 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:05:28 - INFO - ����IO����: 2��1 +2025-02-18 17:05:33 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:05:33 - INFO - ����IO����: 2��0 +2025-02-18 17:05:33 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:33 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:05:33 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 17:05:34 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:05:34 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:34 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 17:05:36 - INFO - �ƶ�����λλ�� +2025-02-18 17:05:36 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:36 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 17:05:42 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:42 - INFO - �ƶ�����λλ�� +2025-02-18 17:05:42 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:05:42 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:42 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:42 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:46 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:47 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:05:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:05:47 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:47 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:05:47 - INFO - �ƶ�������λ�� +2025-02-18 17:05:47 - INFO - �ƶ�������λ�� +2025-02-18 17:05:47 - INFO - �ƶ�������λ�� +2025-02-18 17:05:47 - INFO - �ƶ�������λ�� +2025-02-18 17:05:48 - INFO - �ƶ�������λ�� +2025-02-18 17:05:48 - INFO - ʶ��ͼ��ɹ� +2025-02-18 17:05:48 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:48 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:05:48 - INFO - �ƶ�������λ�� +2025-02-18 17:05:48 - INFO - �ƶ�������λ�� +2025-02-18 17:05:48 - INFO - �ƶ�������λ�� +2025-02-18 17:05:48 - INFO - �ƶ�������λ�� +2025-02-18 17:05:48 - INFO - �ƶ�������λ�� +2025-02-18 17:05:49 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:49 - INFO - ʶ��ͼ��ɹ� +2025-02-18 17:05:49 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 17:05:52 - INFO - �ƶ�����λλ�� +2025-02-18 17:05:52 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:52 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 17:05:57 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"392.5795569149379","m1":"1983.800942121125","m2":"783.0183194386633","m3":"2.932697707128637","m4":"1.8712960241122003","m5":"-84.07736684172605","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:05:57 - INFO - �ƶ�����λλ�� +2025-02-18 17:05:57 - INFO - �ƶ���λ��:����ֱ�ߣ�X:392.5795569149379-Y:1983.800942121125-Z:783.0183194386633-U:2.932697707128637-V:1.8712960241122003-W:-84.07736684172605 +2025-02-18 17:06:02 - INFO - �ƶ�����λλ�� +2025-02-18 17:06:02 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"392.5795569149379","m1":"1983.800942121125","m2":"433.0183194386633","m3":"2.932697707128637","m4":"1.8712960241122003","m5":"-84.07736684172605","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:06:02 - INFO - �ƶ���λ��:����ֱ�ߣ�X:392.5795569149379-Y:1983.800942121125-Z:433.0183194386633-U:2.932697707128637-V:1.8712960241122003-W:-84.07736684172605 +2025-02-18 17:06:02 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:02 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:02 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:02 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:02 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:06 - INFO - ����ץ�ϵ�λ +2025-02-18 17:06:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:07 - INFO - ����ץ�ϵ�λ +2025-02-18 17:06:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:07 - INFO - ����ץ�ϵ�λ +2025-02-18 17:06:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:08 - INFO - ����ץ�ϵ�λ +2025-02-18 17:06:09 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"392.5795569149379","m1":"1983.800942121125","m2":"783.0183194386633","m3":"2.932697707128637","m4":"1.8712960241122003","m5":"-84.07736684172605","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:06:09 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:06:09 - INFO - ����ץ�ϵ�λ +2025-02-18 17:06:09 - INFO - ץ�ϳɹ� +2025-02-18 17:06:10 - INFO - �ƶ���λ��:����ֱ�ߣ�X:392.5795569149379-Y:1983.800942121125-Z:783.0183194386633-U:2.932697707128637-V:1.8712960241122003-W:-84.07736684172605 +2025-02-18 17:06:10 - INFO - �ƶ�����λλ�� +2025-02-18 17:06:11 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 17:06:11 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:06:16 - INFO - �ƶ�����λλ�� +2025-02-18 17:06:16 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 17:06:16 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:06:21 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:06:21 - INFO - �ƶ����ƴ�λ�� +2025-02-18 17:06:21 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 17:06:21 - INFO - �ƶ����ƴ�λ�� +2025-02-18 17:06:21 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 17:06:22 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:06:27 - INFO - ҡ�� +2025-02-18 17:06:27 - INFO - ҡ�� +2025-02-18 17:06:27 - INFO - ҡ�� +2025-02-18 17:06:27 - INFO - ҡ�� +2025-02-18 17:06:28 - INFO - ҡ�� +2025-02-18 17:06:28 - INFO - ҡ�� +2025-02-18 17:06:28 - INFO - ҡ�� +2025-02-18 17:06:28 - INFO - ҡ�� +2025-02-18 17:06:28 - INFO - ҡ�� +2025-02-18 17:06:29 - INFO - ҡ�� +2025-02-18 17:06:29 - INFO - ҡ�� +2025-02-18 17:06:29 - INFO - ҡ�� +2025-02-18 17:06:29 - INFO - ҡ�� +2025-02-18 17:06:30 - INFO - ҡ�� +2025-02-18 17:06:30 - INFO - ҡ�� +2025-02-18 17:06:30 - INFO - ҡ�� +2025-02-18 17:06:30 - INFO - ҡ�� +2025-02-18 17:06:30 - INFO - ҡ�� +2025-02-18 17:06:31 - INFO - ҡ�� +2025-02-18 17:06:31 - INFO - ҡ�� +2025-02-18 17:06:31 - INFO - ҡ�� +2025-02-18 17:06:31 - INFO - ҡ�� +2025-02-18 17:06:32 - INFO - ҡ�� +2025-02-18 17:06:32 - INFO - ҡ�� +2025-02-18 17:06:32 - INFO - ҡ�� +2025-02-18 17:06:32 - INFO - ҡ�� +2025-02-18 17:06:32 - INFO - ҡ�� +2025-02-18 17:06:33 - INFO - ҡ�� +2025-02-18 17:06:33 - INFO - ҡ�� +2025-02-18 17:06:33 - INFO - ҡ�� +2025-02-18 17:06:33 - INFO - ҡ�� +2025-02-18 17:06:34 - INFO - ҡ�� +2025-02-18 17:06:34 - INFO - ҡ�� +2025-02-18 17:06:34 - INFO - ҡ�� +2025-02-18 17:06:34 - INFO - ҡ�� +2025-02-18 17:06:34 - INFO - ҡ�� +2025-02-18 17:06:35 - INFO - ҡ�� +2025-02-18 17:06:35 - INFO - ҡ�� +2025-02-18 17:06:35 - INFO - ҡ�� +2025-02-18 17:06:35 - INFO - ҡ�� +2025-02-18 17:06:36 - INFO - ҡ�� +2025-02-18 17:06:36 - INFO - ҡ�� +2025-02-18 17:06:36 - INFO - ҡ�� +2025-02-18 17:06:36 - INFO - ҡ�� +2025-02-18 17:06:36 - INFO - �û������˳����� +2025-02-18 17:07:13 - INFO - ����ϵͳ +2025-02-18 17:07:18 - INFO - ��һ��ȷ������ +2025-02-18 17:07:18 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 17:07:18 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:07:18 - INFO - ����IO����: 2��1 +2025-02-18 17:07:23 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:07:23 - INFO - ����IO����: 2��0 +2025-02-18 17:07:23 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:07:23 - ERROR - ���ȸ�λ��ԭ�� +2025-02-18 17:07:27 - INFO - ������� +2025-02-18 17:07:27 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:07:27 - INFO - ��ʼ��λ +2025-02-18 17:07:27 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:07:27 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:07:27 - INFO - ����IO����: 2��1 +2025-02-18 17:07:27 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 17:07:28 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:07:28 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 17:07:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:07:32 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 17:07:35 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:07:35 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 17:07:43 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:07:43 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 17:07:47 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:07:47 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 17:07:55 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:07:55 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:08:01 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:01 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:08:02 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 17:08:02 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:08 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:08 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 17:08:17 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:17 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:08:17 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 17:08:17 - INFO - ����IO����: 2��0 +2025-02-18 17:08:40 - INFO - ��һ��ȷ������ +2025-02-18 17:08:40 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 17:08:40 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:08:40 - INFO - ����IO����: 2��1 +2025-02-18 17:08:45 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:08:45 - INFO - ����IO����: 2��0 +2025-02-18 17:08:45 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:08:45 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:45 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 17:08:45 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:08:45 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:46 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 17:08:48 - INFO - �ƶ�����λλ�� +2025-02-18 17:08:48 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 17:08:48 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:54 - INFO - �ƶ�����λλ�� +2025-02-18 17:08:54 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:54 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:08:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:54 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:55 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:56 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:57 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:58 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:59 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:59 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:08:59 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:08:59 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:08:59 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:08:59 - INFO - �ƶ�������λ�� +2025-02-18 17:08:59 - INFO - �ƶ�������λ�� +2025-02-18 17:08:59 - INFO - �ƶ�������λ�� +2025-02-18 17:09:00 - INFO - �ƶ�������λ�� +2025-02-18 17:09:00 - INFO - �ƶ�������λ�� +2025-02-18 17:09:00 - INFO - ʶ��ͼ��ɹ� +2025-02-18 17:09:00 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:09:00 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:09:00 - INFO - �ƶ�������λ�� +2025-02-18 17:09:00 - INFO - �ƶ�������λ�� +2025-02-18 17:09:00 - INFO - �ƶ�������λ�� +2025-02-18 17:09:00 - INFO - �ƶ�������λ�� +2025-02-18 17:09:01 - INFO - �ƶ�������λ�� +2025-02-18 17:09:01 - INFO - ʶ��ͼ��ɹ� +2025-02-18 17:09:01 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:09:01 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 17:09:04 - INFO - �ƶ�����λλ�� +2025-02-18 17:09:04 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:09:04 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 17:09:09 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"392.6463994594535","m1":"1986.3745099466175","m2":"783.1021306386419","m3":"2.8380377200886677","m4":"1.1371665112277498","m5":"-84.0479918743939","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:09:09 - INFO - �ƶ�����λλ�� +2025-02-18 17:09:09 - INFO - �ƶ���λ��:����ֱ�ߣ�X:392.6463994594535-Y:1986.3745099466175-Z:783.1021306386419-U:2.8380377200886677-V:1.1371665112277498-W:-84.0479918743939 +2025-02-18 17:09:14 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"392.6463994594535","m1":"1986.3745099466175","m2":"433.10213063864194","m3":"2.8380377200886677","m4":"1.1371665112277498","m5":"-84.0479918743939","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:09:14 - INFO - �ƶ�����λλ�� +2025-02-18 17:09:14 - INFO - �ƶ���λ��:����ֱ�ߣ�X:392.6463994594535-Y:1986.3745099466175-Z:433.10213063864194-U:2.8380377200886677-V:1.1371665112277498-W:-84.0479918743939 +2025-02-18 17:09:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:14 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:15 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:16 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:17 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:18 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:18 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:18 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:18 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:18 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:18 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:09:18 - INFO - ����ץ�ϵ�λ +2025-02-18 17:11:18 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:11:19 - INFO - ����ץ�ϵ�λ +2025-02-18 17:11:24 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:11:25 - INFO - ����ץ�ϵ�λ +2025-02-18 17:11:31 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:11:31 - INFO - ����ץ�ϵ�λ +2025-02-18 17:11:31 - INFO - ץ�ϳɹ� +2025-02-18 17:11:31 - INFO - �ƶ���λ��:����ֱ�ߣ�X:392.6463994594535-Y:1986.3745099466175-Z:783.1021306386419-U:2.8380377200886677-V:1.1371665112277498-W:-84.0479918743939 +2025-02-18 17:11:31 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"392.6463994594535","m1":"1986.3745099466175","m2":"783.1021306386419","m3":"2.8380377200886677","m4":"1.1371665112277498","m5":"-84.0479918743939","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:12:52 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:12:52 - INFO - �ƶ�����λλ�� +2025-02-18 17:12:52 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 17:12:58 - INFO - �ƶ�����λλ�� +2025-02-18 17:12:58 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 17:12:58 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:13:05 - INFO - �ƶ����ƴ�λ�� +2025-02-18 17:13:05 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:13:05 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 17:13:08 - INFO - �ƶ����ƴ�λ�� +2025-02-18 17:13:08 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 17:13:08 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:13:17 - INFO - ҡ�� +2025-02-18 17:13:21 - INFO - ҡ�� +2025-02-18 17:13:27 - INFO - ҡ�� +2025-02-18 17:13:33 - INFO - ҡ�� +2025-02-18 17:13:59 - INFO - ҡ�� +2025-02-18 17:15:13 - INFO - ����ϵͳ +2025-02-18 17:15:17 - INFO - ��һ��ȷ������ +2025-02-18 17:15:17 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 17:15:17 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:15:17 - INFO - ����IO����: 2��1 +2025-02-18 17:15:19 - INFO - ������� +2025-02-18 17:15:19 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:15:19 - ERROR - 'NoneType' object has no attribute 'num' +2025-02-18 17:15:19 - INFO - ������� +2025-02-18 17:15:20 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:15:20 - INFO - ��ʼ��λ +2025-02-18 17:15:20 - INFO - ������� +2025-02-18 17:15:21 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:15:21 - INFO - ��ʼ��λ +2025-02-18 17:15:22 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:15:22 - INFO - ����IO����: 2��0 +2025-02-18 17:15:22 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:15:22 - ERROR - ���ȸ�λ��ԭ�� +2025-02-18 17:15:23 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:15:23 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:23 - INFO - ����IO����: 2��1 +2025-02-18 17:15:23 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 17:15:23 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 17:15:23 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:27 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:27 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 17:15:30 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:31 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 17:15:38 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:38 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 17:15:42 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:43 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 17:15:50 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:50 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:15:57 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:57 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:15:57 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:15:57 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 17:16:03 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:03 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 17:16:12 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:12 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:16:12 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 17:16:12 - INFO - ����IO����: 2��0 +2025-02-18 17:16:18 - INFO - ��һ��ȷ������ +2025-02-18 17:16:18 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 17:16:18 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:16:18 - INFO - ����IO����: 2��1 +2025-02-18 17:16:23 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:16:23 - INFO - ����IO����: 2��0 +2025-02-18 17:16:23 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:16:23 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:24 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 17:16:24 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 17:16:24 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:24 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 17:16:26 - INFO - �ƶ�����λλ�� +2025-02-18 17:16:26 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:27 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 17:16:32 - INFO - �ƶ�����λλ�� +2025-02-18 17:16:32 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:16:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:33 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:34 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:35 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:36 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:37 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:37 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:37 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:16:37 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 17:16:37 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:16:37 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:37 - INFO - �ƶ�������λ�� +2025-02-18 17:16:37 - INFO - �ƶ�������λ�� +2025-02-18 17:16:37 - INFO - �ƶ�������λ�� +2025-02-18 17:16:38 - INFO - �ƶ�������λ�� +2025-02-18 17:16:38 - INFO - �ƶ�������λ�� +2025-02-18 17:16:38 - INFO - ʶ��ͼ��ɹ� +2025-02-18 17:16:38 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:38 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:16:38 - INFO - �ƶ�������λ�� +2025-02-18 17:16:38 - INFO - �ƶ�������λ�� +2025-02-18 17:16:38 - INFO - �ƶ�������λ�� +2025-02-18 17:16:38 - INFO - �ƶ�������λ�� +2025-02-18 17:16:39 - INFO - �ƶ�������λ�� +2025-02-18 17:16:39 - INFO - ʶ��ͼ��ɹ� +2025-02-18 17:16:39 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:39 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 17:16:41 - INFO - �ƶ�����λλ�� +2025-02-18 17:16:42 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 17:16:42 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:46 - INFO - �ƶ�����λλ�� +2025-02-18 17:16:47 - INFO - �ƶ���λ��:����ֱ�ߣ�X:393.1481118124765-Y:1981.3930574544354-Z:782.9390572913852-U:2.846680274974489-V:2.570028729893435-W:-83.96755100862592 +2025-02-18 17:16:47 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"393.1481118124765","m1":"1981.3930574544354","m2":"782.9390572913852","m3":"2.846680274974489","m4":"2.570028729893435","m5":"-83.96755100862592","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:52 - INFO - �ƶ�����λλ�� +2025-02-18 17:16:52 - INFO - �ƶ���λ��:����ֱ�ߣ�X:393.1481118124765-Y:1981.3930574544354-Z:432.9390572913852-U:2.846680274974489-V:2.570028729893435-W:-83.96755100862592 +2025-02-18 17:16:52 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"393.1481118124765","m1":"1981.3930574544354","m2":"432.9390572913852","m3":"2.846680274974489","m4":"2.570028729893435","m5":"-83.96755100862592","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:16:52 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:52 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:52 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:52 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:52 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:52 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:53 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:54 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:55 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:56 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:56 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:56 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:56 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:56 - INFO - ����ץ�ϵ�λ +2025-02-18 17:16:57 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:57 - INFO - ����ץ�ϵ�λ +2025-02-18 17:16:58 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:16:58 - INFO - ����ץ�ϵ�λ +2025-02-18 17:17:01 - INFO - �ƶ���ץ��λ�� +2025-02-18 17:17:01 - INFO - ����ץ�ϵ�λ +2025-02-18 17:17:01 - INFO - ץ�ϳɹ� +2025-02-18 17:17:01 - INFO - �ƶ���λ��:����ֱ�ߣ�X:393.1481118124765-Y:1981.3930574544354-Z:782.9390572913852-U:2.846680274974489-V:2.570028729893435-W:-83.96755100862592 +2025-02-18 17:17:01 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"393.1481118124765","m1":"1981.3930574544354","m2":"782.9390572913852","m3":"2.846680274974489","m4":"2.570028729893435","m5":"-83.96755100862592","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:17:02 - INFO - �ƶ�����λλ�� +2025-02-18 17:17:02 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:17:03 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 17:17:08 - INFO - �ƶ�����λλ�� +2025-02-18 17:17:08 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 17:17:08 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:17:13 - INFO - �ƶ����ƴ�λ�� +2025-02-18 17:17:13 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 17:17:13 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:17:13 - INFO - �ƶ����ƴ�λ�� +2025-02-18 17:17:13 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:17:14 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 17:17:19 - INFO - ҡ�� +2025-02-18 17:17:20 - ERROR - 'Catch' object has no attribute 'shake_counter' +2025-02-18 17:17:21 - ERROR - 'Catch' object has no attribute 'shake_counter' +2025-02-18 17:17:22 - ERROR - 'Catch' object has no attribute 'shake_counter' +2025-02-18 17:17:23 - ERROR - 'Catch' object has no attribute 'shake_counter' +2025-02-18 17:17:24 - ERROR - 'Catch' object has no attribute 'shake_counter' +2025-02-18 17:17:26 - ERROR - 'Catch' object has no attribute 'shake_counter' +2025-02-18 17:17:27 - ERROR - 'Catch' object has no attribute 'shake_counter' +2025-02-18 17:19:56 - INFO - ����ϵͳ +2025-02-18 17:20:12 - INFO - ������� +2025-02-18 17:20:12 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 17:20:12 - INFO - ��ʼ��λ +2025-02-18 17:20:12 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:20:12 - INFO - ����IO����: 2��1 +2025-02-18 17:20:12 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:12 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 17:20:13 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:13 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 17:20:17 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:17 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 17:20:20 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:20 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 17:20:28 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:28 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 17:20:32 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:32 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 17:20:40 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:40 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:20:46 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:46 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 17:20:47 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:47 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 17:20:53 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:20:53 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 17:21:01 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 17:21:01 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:21:02 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 17:21:02 - INFO - ����IO����: 2��0 +2025-02-18 17:27:59 - INFO - �û������˳����� +2025-02-18 17:28:09 - INFO - ����ϵͳ +2025-02-18 17:28:12 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 17:28:12 - INFO - �л����������� +2025-02-18 17:28:12 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 17:28:12 - INFO - �л����Զ�����״̬ +2025-02-18 17:28:13 - INFO - ��һ��ȷ������ +2025-02-18 17:28:13 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 17:28:13 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 17:28:13 - INFO - ����IO����: 2��1 +2025-02-18 17:28:13 - ERROR - ����������42 +2025-02-18 17:28:14 - ERROR - ����������42 +2025-02-18 17:28:14 - ERROR - ����������42 +2025-02-18 17:28:14 - ERROR - ����������42 +2025-02-18 17:28:14 - ERROR - ����������42 +2025-02-18 17:28:14 - ERROR - ����������42 +2025-02-18 17:28:15 - ERROR - ����������42 +2025-02-18 17:28:15 - ERROR - ����������42 +2025-02-18 17:28:15 - ERROR - ����������42 +2025-02-18 17:28:15 - ERROR - ����������42 +2025-02-18 17:28:15 - ERROR - ����������42 +2025-02-18 17:28:16 - ERROR - ����������42 +2025-02-18 17:28:16 - ERROR - ����������42 +2025-02-18 17:28:16 - ERROR - ����������42 +2025-02-18 17:28:16 - ERROR - ����������42 +2025-02-18 17:28:16 - ERROR - ����������42 +2025-02-18 17:28:17 - ERROR - ����������42 +2025-02-18 17:28:17 - ERROR - ����������42 +2025-02-18 17:28:17 - ERROR - ����������42 +2025-02-18 17:28:17 - ERROR - ����������42 +2025-02-18 17:28:17 - ERROR - ����������42 +2025-02-18 17:28:18 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 17:28:18 - INFO - ����IO����: 2��0 +2025-02-18 17:28:18 - ERROR - ����������42 +2025-02-18 17:28:18 - ERROR - ����������42 +2025-02-18 17:28:18 - ERROR - ����������42 +2025-02-18 17:28:18 - ERROR - ����������42 +2025-02-18 17:28:19 - ERROR - ����������42 +2025-02-18 17:28:19 - ERROR - ����������42 +2025-02-18 17:28:19 - ERROR - ����������42 +2025-02-18 17:28:19 - ERROR - ����������42 +2025-02-18 17:28:19 - ERROR - ����������42 +2025-02-18 17:28:20 - ERROR - ����������42 +2025-02-18 17:28:20 - ERROR - ����������42 +2025-02-18 17:28:20 - ERROR - ����������42 +2025-02-18 17:28:20 - ERROR - ����������42 +2025-02-18 17:28:20 - ERROR - ����������42 +2025-02-18 17:28:21 - ERROR - ����������42 +2025-02-18 17:28:21 - ERROR - ����������42 +2025-02-18 17:28:21 - ERROR - ����������42 +2025-02-18 17:28:21 - ERROR - ����������42 +2025-02-18 17:28:21 - ERROR - ����������42 +2025-02-18 17:28:22 - ERROR - ����������42 +2025-02-18 17:28:22 - ERROR - ����������42 +2025-02-18 17:28:22 - ERROR - ����������42 +2025-02-18 17:28:22 - ERROR - ����������42 +2025-02-18 17:28:22 - ERROR - ����������42 +2025-02-18 17:28:23 - ERROR - ����������42 +2025-02-18 17:28:23 - ERROR - ����������42 +2025-02-18 17:28:23 - ERROR - ����������42 +2025-02-18 17:28:23 - ERROR - ����������42 +2025-02-18 17:28:23 - ERROR - ����������42 +2025-02-18 17:28:24 - ERROR - ����������42 +2025-02-18 17:28:24 - ERROR - ����������42 +2025-02-18 17:28:24 - ERROR - ����������42 +2025-02-18 17:28:24 - ERROR - ����������42 +2025-02-18 17:28:25 - ERROR - ����������42 +2025-02-18 17:28:25 - ERROR - ����������42 +2025-02-18 17:28:25 - ERROR - ����������42 +2025-02-18 17:28:25 - ERROR - ����������42 +2025-02-18 17:28:25 - ERROR - ����������42 +2025-02-18 17:28:26 - ERROR - ����������42 +2025-02-18 17:28:26 - ERROR - ����������42 +2025-02-18 17:28:26 - ERROR - ����������42 +2025-02-18 17:28:26 - ERROR - ����������42 +2025-02-18 17:28:26 - ERROR - ����������42 +2025-02-18 17:28:27 - ERROR - ����������42 +2025-02-18 17:28:27 - ERROR - ����������42 +2025-02-18 17:28:27 - ERROR - ����������42 +2025-02-18 17:28:27 - ERROR - ����������42 +2025-02-18 17:28:27 - ERROR - ����������42 +2025-02-18 17:28:28 - ERROR - ����������42 +2025-02-18 17:28:28 - ERROR - ����������42 +2025-02-18 17:28:28 - ERROR - ����������42 +2025-02-18 17:28:28 - ERROR - ����������42 +2025-02-18 17:28:28 - ERROR - ����������42 +2025-02-18 17:28:29 - ERROR - ����������42 +2025-02-18 17:28:29 - ERROR - ����������42 +2025-02-18 17:28:29 - ERROR - ����������42 +2025-02-18 17:28:29 - ERROR - ����������42 +2025-02-18 17:28:29 - ERROR - ����������42 +2025-02-18 17:28:30 - ERROR - ����������42 +2025-02-18 17:28:30 - ERROR - ����������42 +2025-02-18 17:28:30 - ERROR - ����������42 +2025-02-18 17:28:30 - ERROR - ����������42 +2025-02-18 17:28:30 - ERROR - ����������42 +2025-02-18 17:28:31 - ERROR - ����������42 +2025-02-18 17:28:31 - ERROR - ����������42 +2025-02-18 17:28:31 - ERROR - ����������42 +2025-02-18 17:28:31 - ERROR - ����������42 +2025-02-18 17:28:32 - ERROR - ����������42 +2025-02-18 17:28:32 - ERROR - ����������42 +2025-02-18 17:28:32 - ERROR - ����������42 +2025-02-18 17:28:32 - ERROR - ����������42 +2025-02-18 17:28:32 - ERROR - ����������42 +2025-02-18 17:28:33 - ERROR - ����������42 +2025-02-18 17:28:33 - ERROR - ����������42 +2025-02-18 17:28:33 - ERROR - ����������42 +2025-02-18 17:28:33 - ERROR - ����������42 +2025-02-18 17:28:33 - ERROR - ����������42 +2025-02-18 17:28:34 - ERROR - ����������42 +2025-02-18 17:28:34 - ERROR - ����������42 +2025-02-18 17:28:34 - ERROR - ����������42 +2025-02-18 17:28:34 - ERROR - ����������42 +2025-02-18 17:28:34 - ERROR - ����������42 +2025-02-18 17:28:35 - ERROR - ����������42 +2025-02-18 17:28:35 - ERROR - ����������42 +2025-02-18 17:28:35 - ERROR - ����������42 +2025-02-18 17:28:35 - ERROR - ����������42 +2025-02-18 17:28:35 - ERROR - ����������42 +2025-02-18 17:28:36 - ERROR - ����������42 +2025-02-18 17:28:36 - ERROR - ����������42 +2025-02-18 17:28:36 - ERROR - ����������42 +2025-02-18 17:28:36 - ERROR - ����������42 +2025-02-18 17:28:36 - ERROR - ����������42 +2025-02-18 17:28:37 - ERROR - ����������42 +2025-02-18 17:28:37 - ERROR - ����������42 +2025-02-18 17:28:37 - ERROR - ����������42 +2025-02-18 17:28:37 - ERROR - ����������42 +2025-02-18 17:28:38 - ERROR - ����������42 +2025-02-18 17:28:38 - ERROR - ����������42 +2025-02-18 17:28:38 - ERROR - ����������42 +2025-02-18 17:28:38 - ERROR - ����������42 +2025-02-18 17:28:38 - ERROR - ����������42 +2025-02-18 17:28:39 - ERROR - ����������42 +2025-02-18 17:28:39 - ERROR - ����������42 +2025-02-18 17:28:39 - ERROR - ����������42 +2025-02-18 17:28:39 - ERROR - ����������42 +2025-02-18 17:28:39 - ERROR - ����������42 +2025-02-18 17:28:40 - ERROR - ����������42 +2025-02-18 17:28:40 - ERROR - ����������42 +2025-02-18 17:28:40 - ERROR - ����������42 +2025-02-18 17:28:40 - ERROR - ����������42 +2025-02-18 17:28:40 - ERROR - ����������42 +2025-02-18 17:28:41 - ERROR - ����������42 +2025-02-18 17:28:41 - ERROR - ����������42 +2025-02-18 17:28:41 - ERROR - ����������42 +2025-02-18 17:28:41 - ERROR - ����������42 +2025-02-18 17:28:41 - ERROR - ����������42 +2025-02-18 17:28:42 - ERROR - ����������42 +2025-02-18 17:28:42 - ERROR - ����������42 +2025-02-18 17:28:42 - ERROR - ����������42 +2025-02-18 17:28:42 - ERROR - ����������42 +2025-02-18 17:28:42 - ERROR - ����������42 +2025-02-18 17:28:43 - ERROR - ����������42 +2025-02-18 17:28:43 - ERROR - ����������42 +2025-02-18 17:28:43 - ERROR - ����������42 +2025-02-18 17:28:43 - ERROR - ����������42 +2025-02-18 17:28:44 - ERROR - ����������42 +2025-02-18 17:28:44 - ERROR - ����������42 +2025-02-18 17:28:44 - ERROR - ����������42 +2025-02-18 17:28:44 - ERROR - ����������42 +2025-02-18 17:28:44 - ERROR - ����������42 +2025-02-18 17:28:45 - ERROR - ����������42 +2025-02-18 17:28:45 - ERROR - ����������42 +2025-02-18 17:28:45 - ERROR - ����������42 +2025-02-18 17:28:45 - ERROR - ����������42 +2025-02-18 17:28:45 - ERROR - ����������42 +2025-02-18 17:28:46 - ERROR - ����������42 +2025-02-18 17:28:46 - ERROR - ����������42 +2025-02-18 17:28:46 - ERROR - ����������42 +2025-02-18 17:28:46 - ERROR - ����������42 +2025-02-18 17:28:46 - ERROR - ����������42 +2025-02-18 17:28:47 - ERROR - ����������42 +2025-02-18 17:28:47 - ERROR - ����������42 +2025-02-18 17:28:47 - ERROR - ����������42 +2025-02-18 17:28:47 - ERROR - ����������42 +2025-02-18 17:28:47 - ERROR - ����������42 +2025-02-18 17:28:48 - ERROR - ����������42 +2025-02-18 17:28:48 - ERROR - ����������42 +2025-02-18 17:28:48 - ERROR - ����������42 +2025-02-18 17:28:48 - ERROR - ����������42 +2025-02-18 17:28:48 - ERROR - ����������42 +2025-02-18 17:28:49 - ERROR - ����������42 +2025-02-18 17:28:49 - ERROR - ����������42 +2025-02-18 17:28:49 - ERROR - ����������42 +2025-02-18 17:28:49 - ERROR - ����������42 +2025-02-18 17:28:50 - ERROR - ����������42 +2025-02-18 17:28:50 - ERROR - ����������42 +2025-02-18 17:28:50 - ERROR - ����������42 +2025-02-18 17:28:50 - ERROR - ����������42 +2025-02-18 17:28:50 - ERROR - ����������42 +2025-02-18 17:28:51 - ERROR - ����������42 +2025-02-18 17:28:51 - ERROR - ����������42 +2025-02-18 17:28:51 - ERROR - ����������42 +2025-02-18 17:28:51 - ERROR - ����������42 +2025-02-18 17:28:51 - ERROR - ����������42 +2025-02-18 17:28:52 - ERROR - ����������42 +2025-02-18 17:28:52 - ERROR - ����������42 +2025-02-18 17:28:52 - ERROR - ����������42 +2025-02-18 17:28:52 - ERROR - ����������42 +2025-02-18 17:28:52 - ERROR - ����������42 +2025-02-18 17:28:53 - ERROR - ����������42 +2025-02-18 17:28:53 - ERROR - ����������42 +2025-02-18 17:28:53 - ERROR - ����������42 +2025-02-18 17:28:53 - ERROR - ����������42 +2025-02-18 17:28:53 - ERROR - ����������42 +2025-02-18 17:28:54 - ERROR - ����������42 +2025-02-18 17:28:54 - ERROR - ����������42 +2025-02-18 17:28:54 - ERROR - ����������42 +2025-02-18 17:28:54 - ERROR - ����������42 +2025-02-18 17:28:54 - ERROR - ����������42 +2025-02-18 17:28:55 - ERROR - ����������42 +2025-02-18 17:28:55 - ERROR - ����������42 +2025-02-18 17:28:55 - ERROR - ����������42 +2025-02-18 17:28:55 - ERROR - ����������42 +2025-02-18 17:28:55 - ERROR - ����������42 +2025-02-18 17:28:56 - ERROR - ����������42 +2025-02-18 17:28:56 - ERROR - ����������42 +2025-02-18 17:28:56 - ERROR - ����������42 +2025-02-18 17:28:56 - ERROR - ����������42 +2025-02-18 17:28:56 - ERROR - ����������42 +2025-02-18 17:28:57 - ERROR - ����������42 +2025-02-18 17:28:57 - ERROR - ����������42 +2025-02-18 17:28:57 - ERROR - ����������42 +2025-02-18 17:28:57 - ERROR - ����������42 +2025-02-18 17:28:58 - ERROR - ����������42 +2025-02-18 17:28:58 - ERROR - ����������42 +2025-02-18 17:28:58 - ERROR - ����������42 +2025-02-18 17:28:58 - ERROR - ����������42 +2025-02-18 17:28:58 - ERROR - ����������42 +2025-02-18 17:28:59 - ERROR - ����������42 +2025-02-18 17:28:59 - ERROR - ����������42 +2025-02-18 17:28:59 - ERROR - ����������42 +2025-02-18 17:28:59 - ERROR - ����������42 +2025-02-18 17:28:59 - ERROR - ����������42 +2025-02-18 17:29:00 - ERROR - ����������42 +2025-02-18 17:29:00 - ERROR - ����������42 +2025-02-18 17:29:00 - ERROR - ����������42 +2025-02-18 17:29:00 - ERROR - ����������42 +2025-02-18 17:29:00 - ERROR - ����������42 +2025-02-18 17:29:01 - ERROR - ����������42 +2025-02-18 17:29:01 - ERROR - ����������42 +2025-02-18 17:29:01 - ERROR - ����������42 +2025-02-18 17:29:01 - ERROR - ����������42 +2025-02-18 17:29:01 - ERROR - ����������42 +2025-02-18 17:29:02 - ERROR - ����������42 +2025-02-18 17:29:02 - ERROR - ����������42 +2025-02-18 17:29:02 - ERROR - ����������42 +2025-02-18 17:29:02 - ERROR - ����������42 +2025-02-18 17:29:03 - ERROR - ����������42 +2025-02-18 17:29:03 - ERROR - ����������42 +2025-02-18 17:29:03 - ERROR - ����������42 +2025-02-18 17:29:03 - ERROR - ����������42 +2025-02-18 17:29:03 - ERROR - ����������42 +2025-02-18 17:29:04 - ERROR - ����������42 +2025-02-18 17:29:04 - ERROR - ����������42 +2025-02-18 17:29:04 - ERROR - ����������42 +2025-02-18 17:29:04 - ERROR - ����������42 +2025-02-18 17:29:04 - ERROR - ����������42 +2025-02-18 17:29:05 - ERROR - ����������42 +2025-02-18 17:29:05 - ERROR - ����������42 +2025-02-18 17:29:05 - ERROR - ����������42 +2025-02-18 17:29:05 - ERROR - ����������42 +2025-02-18 17:29:05 - ERROR - ����������42 +2025-02-18 17:29:06 - ERROR - ����������42 +2025-02-18 17:29:06 - ERROR - ����������42 +2025-02-18 17:29:06 - ERROR - ����������42 +2025-02-18 17:29:06 - ERROR - ����������42 +2025-02-18 17:29:06 - ERROR - ����������42 +2025-02-18 17:29:07 - ERROR - ����������42 +2025-02-18 17:29:07 - ERROR - ����������42 +2025-02-18 17:29:07 - ERROR - ����������42 +2025-02-18 17:29:07 - ERROR - ����������42 +2025-02-18 17:29:07 - ERROR - ����������42 +2025-02-18 17:29:08 - ERROR - ����������42 +2025-02-18 17:29:08 - ERROR - ����������42 +2025-02-18 17:29:08 - ERROR - ����������42 +2025-02-18 17:29:08 - ERROR - ����������42 +2025-02-18 17:29:08 - ERROR - ����������42 +2025-02-18 17:29:09 - ERROR - ����������42 +2025-02-18 17:29:09 - ERROR - ����������42 +2025-02-18 17:29:09 - ERROR - ����������42 +2025-02-18 17:29:09 - ERROR - ����������42 +2025-02-18 17:29:10 - ERROR - ����������42 +2025-02-18 17:29:10 - ERROR - ����������42 +2025-02-18 17:29:10 - ERROR - ����������42 +2025-02-18 17:29:10 - ERROR - ����������42 +2025-02-18 17:29:10 - ERROR - ����������42 +2025-02-18 17:29:11 - ERROR - ����������42 +2025-02-18 17:29:11 - ERROR - ����������42 +2025-02-18 17:29:11 - ERROR - ����������42 +2025-02-18 17:29:11 - ERROR - ����������42 +2025-02-18 17:29:11 - ERROR - ����������42 +2025-02-18 17:29:12 - ERROR - ����������42 +2025-02-18 17:29:12 - ERROR - ����������42 +2025-02-18 17:29:12 - ERROR - ����������42 +2025-02-18 17:29:12 - ERROR - ����������42 +2025-02-18 17:29:12 - ERROR - ����������42 +2025-02-18 17:29:13 - ERROR - ����������42 +2025-02-18 17:29:13 - ERROR - ����������42 +2025-02-18 17:29:13 - ERROR - ����������42 +2025-02-18 17:29:13 - ERROR - ����������42 +2025-02-18 17:29:13 - ERROR - ����������42 +2025-02-18 17:29:14 - ERROR - ����������42 +2025-02-18 17:29:14 - ERROR - ����������42 +2025-02-18 17:29:14 - ERROR - ����������42 +2025-02-18 17:29:14 - ERROR - ����������42 +2025-02-18 17:29:14 - ERROR - ����������42 +2025-02-18 17:29:15 - ERROR - ����������42 +2025-02-18 17:29:15 - ERROR - ����������42 +2025-02-18 17:29:15 - ERROR - ����������42 +2025-02-18 17:29:15 - ERROR - ����������42 +2025-02-18 17:29:16 - ERROR - ����������42 +2025-02-18 17:29:16 - ERROR - ����������42 +2025-02-18 17:29:16 - ERROR - ����������42 +2025-02-18 17:29:16 - ERROR - ����������42 +2025-02-18 17:29:16 - ERROR - ����������42 +2025-02-18 17:29:17 - ERROR - ����������42 +2025-02-18 17:29:17 - ERROR - ����������42 +2025-02-18 17:29:17 - ERROR - ����������42 +2025-02-18 17:29:17 - ERROR - ����������42 +2025-02-18 17:29:17 - ERROR - ����������42 +2025-02-18 17:29:18 - ERROR - ����������42 +2025-02-18 17:29:18 - ERROR - ����������42 +2025-02-18 17:29:18 - ERROR - ����������42 +2025-02-18 17:29:18 - ERROR - ����������42 +2025-02-18 17:29:18 - ERROR - ����������42 +2025-02-18 17:29:19 - ERROR - ����������42 +2025-02-18 17:29:19 - ERROR - ����������42 +2025-02-18 17:29:19 - ERROR - ����������42 +2025-02-18 17:29:19 - ERROR - ����������42 +2025-02-18 17:29:19 - ERROR - ����������42 +2025-02-18 17:29:20 - ERROR - ����������42 +2025-02-18 17:29:20 - ERROR - ����������42 +2025-02-18 17:29:20 - ERROR - ����������42 +2025-02-18 17:29:20 - ERROR - ����������42 +2025-02-18 17:29:20 - ERROR - ����������42 +2025-02-18 17:29:21 - ERROR - ����������42 +2025-02-18 17:29:21 - ERROR - ����������42 +2025-02-18 17:29:21 - ERROR - ����������42 +2025-02-18 17:29:21 - ERROR - ����������42 +2025-02-18 17:29:22 - ERROR - ����������42 +2025-02-18 17:29:22 - ERROR - ����������42 +2025-02-18 17:29:22 - ERROR - ����������42 +2025-02-18 17:29:22 - ERROR - ����������42 +2025-02-18 17:29:22 - ERROR - ����������42 +2025-02-18 17:29:23 - ERROR - ����������42 +2025-02-18 17:29:23 - ERROR - ����������42 +2025-02-18 17:29:23 - ERROR - ����������42 +2025-02-18 17:29:23 - ERROR - ����������42 +2025-02-18 17:29:23 - ERROR - ����������42 +2025-02-18 17:29:24 - ERROR - ����������42 +2025-02-18 17:29:24 - ERROR - ����������42 +2025-02-18 17:29:24 - ERROR - ����������42 +2025-02-18 17:29:24 - ERROR - ����������42 +2025-02-18 17:29:24 - ERROR - ����������42 +2025-02-18 17:29:25 - ERROR - ����������42 +2025-02-18 17:29:25 - ERROR - ����������42 +2025-02-18 17:29:25 - ERROR - ����������42 +2025-02-18 17:29:25 - ERROR - ����������42 +2025-02-18 17:29:25 - ERROR - ����������42 +2025-02-18 17:29:26 - ERROR - ����������42 +2025-02-18 17:29:26 - ERROR - ����������42 +2025-02-18 17:29:26 - ERROR - ����������42 +2025-02-18 17:29:26 - ERROR - ����������42 +2025-02-18 17:29:26 - ERROR - ����������42 +2025-02-18 17:29:27 - ERROR - ����������42 +2025-02-18 17:29:27 - ERROR - ����������42 +2025-02-18 17:29:27 - ERROR - ����������42 +2025-02-18 17:29:27 - ERROR - ����������42 +2025-02-18 17:29:28 - ERROR - ����������42 +2025-02-18 17:29:28 - ERROR - ����������42 +2025-02-18 17:29:28 - ERROR - ����������42 +2025-02-18 17:29:28 - ERROR - ����������42 +2025-02-18 17:29:28 - ERROR - ����������42 +2025-02-18 17:29:29 - ERROR - ����������42 +2025-02-18 17:29:29 - ERROR - ����������42 +2025-02-18 17:29:29 - ERROR - ����������42 +2025-02-18 17:29:29 - ERROR - ����������42 +2025-02-18 17:29:29 - ERROR - ����������42 +2025-02-18 17:29:30 - ERROR - ����������42 +2025-02-18 17:29:30 - ERROR - ����������42 +2025-02-18 17:29:30 - ERROR - ����������42 +2025-02-18 17:29:30 - ERROR - ����������42 +2025-02-18 17:29:30 - ERROR - ����������42 +2025-02-18 17:29:31 - ERROR - ����������42 +2025-02-18 17:29:31 - ERROR - ����������42 +2025-02-18 17:29:31 - ERROR - ����������42 +2025-02-18 17:29:31 - ERROR - ����������42 +2025-02-18 17:29:31 - ERROR - ����������42 +2025-02-18 17:29:32 - ERROR - ����������42 +2025-02-18 17:29:32 - ERROR - ����������42 +2025-02-18 17:29:32 - ERROR - ����������42 +2025-02-18 17:29:32 - ERROR - ����������42 +2025-02-18 17:29:32 - ERROR - ����������42 +2025-02-18 17:29:33 - ERROR - ����������42 +2025-02-18 17:29:33 - ERROR - ����������42 +2025-02-18 17:29:33 - ERROR - ����������42 +2025-02-18 17:29:33 - ERROR - ����������42 +2025-02-18 17:29:34 - ERROR - ����������42 +2025-02-18 17:29:34 - ERROR - ����������42 +2025-02-18 17:29:34 - ERROR - ����������42 +2025-02-18 17:29:34 - ERROR - ����������42 +2025-02-18 17:29:34 - ERROR - ����������42 +2025-02-18 17:29:35 - ERROR - ����������42 +2025-02-18 17:29:35 - ERROR - ����������42 +2025-02-18 17:29:35 - ERROR - ����������42 +2025-02-18 17:29:35 - ERROR - ����������42 +2025-02-18 17:29:35 - ERROR - ����������42 +2025-02-18 17:29:36 - ERROR - ����������42 +2025-02-18 17:29:36 - ERROR - ����������42 +2025-02-18 17:29:36 - ERROR - ����������42 +2025-02-18 17:29:36 - ERROR - ����������42 +2025-02-18 17:29:36 - ERROR - ����������42 +2025-02-18 17:29:37 - ERROR - ����������42 +2025-02-18 17:29:37 - ERROR - ����������42 +2025-02-18 17:29:37 - ERROR - ����������42 +2025-02-18 17:29:37 - ERROR - ����������42 +2025-02-18 17:29:37 - ERROR - ����������42 +2025-02-18 17:29:38 - ERROR - ����������42 +2025-02-18 17:29:38 - ERROR - ����������42 +2025-02-18 17:29:38 - ERROR - ����������42 +2025-02-18 17:29:38 - ERROR - ����������42 +2025-02-18 17:29:38 - ERROR - ����������42 +2025-02-18 17:29:39 - ERROR - ����������42 +2025-02-18 17:29:39 - ERROR - ����������42 +2025-02-18 17:29:39 - ERROR - ����������42 +2025-02-18 17:29:39 - ERROR - ����������42 +2025-02-18 17:29:40 - ERROR - ����������42 +2025-02-18 17:29:40 - ERROR - ����������42 +2025-02-18 17:29:40 - ERROR - ����������42 +2025-02-18 17:29:40 - ERROR - ����������42 +2025-02-18 17:29:40 - ERROR - ����������42 +2025-02-18 17:29:41 - ERROR - ����������42 +2025-02-18 17:29:41 - ERROR - ����������42 +2025-02-18 17:29:41 - ERROR - ����������42 +2025-02-18 17:29:41 - ERROR - ����������42 +2025-02-18 17:29:41 - ERROR - ����������42 +2025-02-18 17:29:42 - ERROR - ����������42 +2025-02-18 17:29:42 - INFO - �û������˳����� +2025-02-18 17:53:55 - INFO - ����ϵͳ +2025-02-18 18:37:17 - ERROR - ��¼����ʧ�� +2025-02-18 18:37:17 - INFO - �˳�ϵͳ +2025-02-18 18:43:04 - INFO - ����ϵͳ +2025-02-18 18:43:08 - INFO - �û������˳����� +2025-02-18 18:45:58 - INFO - ����ϵͳ +2025-02-18 18:46:08 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-18 18:46:08 - INFO - �л����������� +2025-02-18 18:46:08 - INFO - ��������{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-18 18:46:08 - INFO - �л����Զ�����״̬ +2025-02-18 18:46:08 - INFO - ������� +2025-02-18 18:46:08 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:46:09 - INFO - ��ʼ��λ +2025-02-18 18:46:09 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 18:46:09 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:09 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 18:46:09 - INFO - ����IO����: 2��1 +2025-02-18 18:46:09 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 18:46:09 - INFO - ����IO����: 2��0 +2025-02-18 18:46:29 - INFO - ��һ��ȷ������ +2025-02-18 18:46:29 - INFO - ��Ӧ��1:Ͷ�Ͽ�ʼ +2025-02-18 18:46:29 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 18:46:29 - INFO - ����IO����: 2��1 +2025-02-18 18:46:34 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 18:46:34 - INFO - ����IO����: 2��0 +2025-02-18 18:46:34 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:34 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 18:46:34 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 18:46:34 - INFO - Ͷ�Ͽ�ʼ +2025-02-18 18:46:35 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:35 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 18:46:37 - INFO - �ƶ�����λλ�� +2025-02-18 18:46:37 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 18:46:37 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:43 - INFO - �ƶ�����λλ�� +2025-02-18 18:46:43 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:43 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 18:46:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:43 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:44 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:45 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:46 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:47 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:48 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:48 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 18:46:48 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:48 - INFO - ����Ƿ�ȫͶ�� +2025-02-18 18:46:48 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 18:46:48 - INFO - �ƶ�������λ�� +2025-02-18 18:46:48 - INFO - �ƶ�������λ�� +2025-02-18 18:46:48 - INFO - �ƶ�������λ�� +2025-02-18 18:46:49 - INFO - �ƶ�������λ�� +2025-02-18 18:46:49 - INFO - �ƶ�������λ�� +2025-02-18 18:46:49 - INFO - ʶ��ͼ��ɹ� +2025-02-18 18:46:49 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:49 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 18:46:49 - INFO - �ƶ�������λ�� +2025-02-18 18:46:49 - INFO - �ƶ�������λ�� +2025-02-18 18:46:49 - INFO - �ƶ�������λ�� +2025-02-18 18:46:49 - INFO - �ƶ�������λ�� +2025-02-18 18:46:49 - INFO - �ƶ�������λ�� +2025-02-18 18:46:50 - INFO - ʶ��ͼ��ɹ� +2025-02-18 18:46:50 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:50 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 18:46:53 - INFO - �ƶ�����λλ�� +2025-02-18 18:46:53 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 18:46:53 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:46:58 - INFO - �ƶ�����λλ�� +2025-02-18 18:46:58 - INFO - �ƶ���λ��:����ֱ�ߣ�X:403.40924081942876-Y:2171.7908017723175-Z:782.6364856512116-U:2.0425459584537413-V:-2.1139782640798273-W:-85.42254688166035 +2025-02-18 18:46:58 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"403.40924081942876","m1":"2171.7908017723175","m2":"782.6364856512116","m3":"2.0425459584537413","m4":"-2.1139782640798273","m5":"-85.42254688166035","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:47:03 - INFO - �ƶ�����λλ�� +2025-02-18 18:47:03 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"403.40924081942876","m1":"2171.7908017723175","m2":"432.63648565121156","m3":"2.0425459584537413","m4":"-2.1139782640798273","m5":"-85.42254688166035","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:47:03 - INFO - �ƶ���λ��:����ֱ�ߣ�X:403.40924081942876-Y:2171.7908017723175-Z:432.63648565121156-U:2.0425459584537413-V:-2.1139782640798273-W:-85.42254688166035 +2025-02-18 18:47:03 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:04 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:05 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:06 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:07 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:08 - INFO - ����ץ�ϵ�λ +2025-02-18 18:47:08 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:09 - INFO - ����ץ�ϵ�λ +2025-02-18 18:47:09 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:09 - INFO - ����ץ�ϵ�λ +2025-02-18 18:47:09 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:09 - INFO - ����ץ�ϵ�λ +2025-02-18 18:47:10 - INFO - �ƶ���ץ��λ�� +2025-02-18 18:47:11 - INFO - ����ץ�ϵ�λ +2025-02-18 18:47:11 - INFO - ץ�ϳɹ� +2025-02-18 18:47:11 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"403.40924081942876","m1":"2171.7908017723175","m2":"782.6364856512116","m3":"2.0425459584537413","m4":"-2.1139782640798273","m5":"-85.42254688166035","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:47:11 - INFO - �ƶ���λ��:����ֱ�ߣ�X:403.40924081942876-Y:2171.7908017723175-Z:782.6364856512116-U:2.0425459584537413-V:-2.1139782640798273-W:-85.42254688166035 +2025-02-18 18:47:12 - INFO - �ƶ�����λλ�� +2025-02-18 18:47:12 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 18:47:12 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:47:17 - INFO - �ƶ�����λλ�� +2025-02-18 18:47:17 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:47:18 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 18:47:22 - INFO - �ƶ����ƴ�λ�� +2025-02-18 18:47:22 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 18:47:23 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:47:23 - INFO - �ƶ����ƴ�λ�� +2025-02-18 18:47:23 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 18:47:23 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"550","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:47:28 - INFO - ҡ�� +2025-02-18 18:47:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:47:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:47 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:48 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:49 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:50 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:51 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:52 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:53 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:54 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:55 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:56 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:57 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:58 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:48:59 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:00 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:01 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:02 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:03 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:04 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:05 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:06 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:07 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:08 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:09 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:10 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:11 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:12 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:13 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:14 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:15 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:16 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:17 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:18 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:19 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:20 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:21 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:22 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:23 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:24 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:25 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:26 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:27 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:28 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:29 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:30 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:31 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:32 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:33 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:34 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:35 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:35 - INFO - ������� +2025-02-18 18:49:35 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:36 - INFO - Ͷ��ֹͣ +2025-02-18 18:49:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:36 - INFO - ������� +2025-02-18 18:49:36 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:36 - INFO - Ͷ��ֹͣ +2025-02-18 18:49:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:36 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:37 - INFO - ������� +2025-02-18 18:49:37 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:37 - INFO - Ͷ��ֹͣ +2025-02-18 18:49:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:37 - INFO - ������� +2025-02-18 18:49:37 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:37 - INFO - Ͷ��ֹͣ +2025-02-18 18:49:37 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:38 - INFO - ������� +2025-02-18 18:49:38 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:38 - INFO - Ͷ��ֹͣ +2025-02-18 18:49:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:38 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:39 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:39 - INFO - ������� +2025-02-18 18:49:39 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:39 - INFO - ��ʼ��λ +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:40 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:41 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:42 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:43 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:44 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:45 - INFO - ������� +2025-02-18 18:49:45 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:45 - INFO - ��ʼ��λ +2025-02-18 18:49:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:45 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:45 - INFO - ������� +2025-02-18 18:49:45 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:46 - INFO - ��ʼ��λ +2025-02-18 18:49:46 - ERROR - 'Catch' object has no attribute 'log_signal' +2025-02-18 18:49:46 - INFO - ������� +2025-02-18 18:49:46 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:49:46 - INFO - ��ʼ��λ +2025-02-18 18:50:02 - INFO - ����ϵͳ +2025-02-18 18:50:09 - INFO - ������� +2025-02-18 18:50:09 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-18 18:50:09 - INFO - ��ʼ��λ +2025-02-18 18:50:09 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-18 18:50:09 - INFO - ����IO����: 2��1 +2025-02-18 18:50:09 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-18 18:50:09 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:09 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:09 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-18 18:50:13 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:14 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-18 18:50:17 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:17 - INFO - �ƶ���λ��:����ֱ�ߣ�X:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-18 18:50:25 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:25 - INFO - �ƶ���λ��:����ֱ�ߣ�X:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-18 18:50:29 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:29 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-18 18:50:37 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:37 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 18:50:43 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:43 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-18 18:50:43 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:43 - INFO - �ƶ���λ��:����ֱ�ߣ�X:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-18 18:50:50 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:50 - INFO - �ƶ���λ��:����ֱ�ߣ�X:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-18 18:50:58 - INFO - ��������{"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"35","delay":"0","smooth":"9","tool":"2"}]} +2025-02-18 18:50:59 - INFO - ��������{"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-18 18:50:59 - INFO - �ƶ���λ��:����ֱ�ߣ�X:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-18 18:50:59 - INFO - ����IO����: 2��0 +2025-02-18 18:51:31 - ERROR - �޻ظ� +2025-02-18 18:51:42 - ERROR - �޻ظ� +2025-02-18 18:51:52 - ERROR - �޻ظ� +2025-02-18 18:52:03 - ERROR - �޻ظ� +2025-02-18 18:52:13 - ERROR - �޻ظ� +2025-02-18 18:52:23 - ERROR - �޻ظ� +2025-02-18 18:52:34 - ERROR - �޻ظ� +2025-02-18 18:52:44 - ERROR - �޻ظ� +2025-02-18 18:52:55 - ERROR - �޻ظ� +2025-02-18 18:53:05 - ERROR - �޻ظ� +2025-02-18 18:53:16 - ERROR - �޻ظ� +2025-02-18 18:53:26 - ERROR - �޻ظ� +2025-02-18 18:53:37 - ERROR - �޻ظ� +2025-02-18 18:53:47 - ERROR - �޻ظ� +2025-02-18 18:53:57 - ERROR - �޻ظ� +2025-02-18 18:54:08 - ERROR - �޻ظ� +2025-02-18 18:54:18 - ERROR - �޻ظ� +2025-02-18 18:54:29 - ERROR - �޻ظ� +2025-02-18 18:54:39 - ERROR - �޻ظ� +2025-02-18 18:54:50 - ERROR - �޻ظ� +2025-02-18 18:54:55 - INFO - �˳�ϵͳ +2025-02-18 18:54:55 - ERROR - �޻ظ� +2025-02-19 20:38:30 - INFO - ϵͳ +2025-02-19 20:38:32 - ERROR - ¼ʧ +2025-02-19 20:38:33 - INFO - ˳ϵͳ diff --git a/main.py b/main.py index a45839e..3569dee 100644 --- a/main.py +++ b/main.py @@ -63,6 +63,7 @@ class MainWindow(QMainWindow, Ui_MainWindow): self.init_Run() self.init_robot_info() + self.init_IOPanel() self.start_Runing() self.init_log()