异常时打印请求文本

main
daixiaoyi 3 months ago
parent 5c7a6b1540
commit 05781451d1

@ -25,11 +25,11 @@ public class TtsUtil {
PaddleSpeechResDTO<TtsResultDTO> response = objectMapper.readValue(post, new TypeReference<PaddleSpeechResDTO<TtsResultDTO>>() { PaddleSpeechResDTO<TtsResultDTO> response = objectMapper.readValue(post, new TypeReference<PaddleSpeechResDTO<TtsResultDTO>>() {
}); });
if (!response.getSuccess() || ObjectUtil.isEmpty(response.getResult())) { if (!response.getSuccess() || ObjectUtil.isEmpty(response.getResult())) {
throw new BusinessException("文字转换语音失败"); throw new BusinessException("文字转换语音失败:【"+str+"】");
} }
return response.getResult(); return response.getResult();
} catch (Exception e) { } catch (Exception e) {
throw new BusinessException("语音转换文字失败", e); throw new BusinessException("语音转换文字失败:【"+str+"】", e);
} }
} }
} }

Loading…
Cancel
Save