This commit is contained in:
2026-06-11 11:06:59 +08:00
parent 4574798d86
commit 0570d41439
4 changed files with 19 additions and 19 deletions

View File

@@ -152,7 +152,10 @@ class zmqServer(threading.Thread):
msg = {'method': method, 'params': params}
msg_bytes = json.dumps(msg).encode('utf-8')
algo_log(f"发送命令结果: {msg}", level="DEBUG")
if msg['method'] == 'beta_psd':
algo_log(f"发送命令结果: {msg}", level="DEBUG", record_once=True)
else:
algo_log(f"发送命令结果: {msg}", level="DEBUG")
# 广播到所有命令客户端
for client_id in list(self.cmd_clients):