Skip to content

Commit 24f1748

Browse files
author
Taois
committed
feat: 更新了一些可能没卵用的优化
1 parent 508c222 commit 24f1748

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

spider/py/core/t4_daemon.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -684,14 +684,12 @@ class T4Handler(StreamRequestHandler):
684684
def handle(self):
685685
self.request.settimeout(REQUEST_TIMEOUT)
686686
try:
687-
logger.info('before recv_packet')
688687
req = recv_packet(self.rfile)
689-
logger.info('before recv_packet req')
690688
script_path = req.get("script_path", "")
691689
method_name = req.get("method_name", "")
692690
env = req.get("env", "") or ""
693691
args = req.get("args", []) or []
694-
logger.info("T4Handler start: script_path:%s method_name:%s", script_path, method_name)
692+
# logger.info("T4Handler start: script_path:%s method_name:%s", script_path, method_name)
695693
result = _manager.call(script_path, method_name, env, args)
696694
# 统一外层返回格式
697695
resp = {

0 commit comments

Comments
 (0)