Procházet zdrojové kódy

讯飞实时听写接口,debug

Davidliu před 1 měsícem
rodič
revize
93ad2859b0
2 změnil soubory, kde provedl 7 přidání a 7 odebrání
  1. 1 1
      src/core/callcenter/config.py
  2. 6 6
      src/core/voip/asr.py

+ 1 - 1
src/core/callcenter/config.py

@@ -48,7 +48,7 @@ dictConfig({
 
         },
         "root": {
-            "level": "DEBUG",  # # handler中的level会覆盖掉这里的level
+            "level": "INFO",  # # handler中的level会覆盖掉这里的level
             "handlers": ["console"],
         },
     }

+ 6 - 6
src/core/voip/asr.py

@@ -393,12 +393,12 @@ class XunfeiAsr:
                 self.ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
                 self.logger.info("xunfei.Asr.call_id:%s, 3333333333", self.__id)
                 time_cost = (datetime.now() - time1)
-                self.logger.debug(f"xunfei.Asr.started. call_id:{self.__id}, timeCost:{time_cost}, count:{count}")
+                self.logger.info(f"xunfei.Asr.started. call_id:{self.__id}, timeCost:{time_cost}, count:{count}")
                 self.__event.wait(timeout=.5)
-                self.logger.debug(f"xunfei.Asr.started. call_id:{self.__id}, {count}")
+                self.logger.info(f"xunfei.Asr.started. call_id:{self.__id}, {count}")
             except Exception as e:
                 traceback.print_exc()
-                self.logger.debug(f"[{self.__id}]ASR session start exception. {e}")
+                self.logger.info(f"[{self.__id}]ASR session start exception. {e}")
             count += 1
 
     def start(self):
@@ -406,12 +406,12 @@ class XunfeiAsr:
 
     def send_audio(self, audio_data=None, first=False):
         if not self.ws:
-            self.logger.debug('xunfei.Asr.send_audio:ws_is_None: call_id: %s, chunk:%s, %s', self.__id, len(audio_data), audio_data)
+            self.logger.info('xunfei.Asr.send_audio:ws_is_None: call_id: %s, chunk:%s, %s', self.__id, len(audio_data), audio_data)
             return
         status = XunfeiAsr.STATUS_FIRST_FRAME if first else XunfeiAsr.STATUS_CONTINUE_FRAME # 音频的状态信息,标识音频是第一帧,还是中间帧、最后一帧
         if not audio_data:
             status = XunfeiAsr.STATUS_LAST_FRAME
-        self.logger.debug('xunfei.Asr.send_audio: call_id: %s, status:%s, chunk:%s, %s', self.__id, status, len(audio_data), audio_data)
+        self.logger.info('xunfei.Asr.send_audio: call_id: %s, status:%s, chunk:%s, %s', self.__id, status, len(audio_data), audio_data)
 
         # 第一帧处理
         # 发送第一帧音频,带business 参数
@@ -443,7 +443,7 @@ class XunfeiAsr:
             self.send_audio()
             self.ws.close()
         except Exception as e:
-            self.logger.debug(f"[{self.__id}]Error stopping ASR: {e}")
+            self.logger.info(f"[{self.__id}]Error stopping ASR: {e}")
 
     # 收到websocket连接建立的处理
     def on_open(self, ws):