File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff 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 = {
You can’t perform that action at this time.
0 commit comments