Browse Source

```
refactor(capture): 移除调试打印语句

移除 SmartShooter 类中 zmq 接收超时的调试打印语句,
改用注释方式保持代码整洁
```

rambo 3 tuần trước cách đây
mục cha
commit
68cb56370c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      python/mcu/capture/smart_shooter_class.py

+ 1 - 1
python/mcu/capture/smart_shooter_class.py

@@ -558,7 +558,7 @@ class SmartShooter(metaclass=SingletonType):
                 # self.callback_listen(json_msg)
                 asyncio.run(self.callback_listen(json_msg))
             except zmq.Again:
-                print("接收超时,继续监听...")
+                # print("接收超时,继续监听...")
                 # logger.info("接收超时,继续监听...")
                 continue
             except Exception as e: