From abc610097fe3a6ff1c1282f728fb0d75440f6ba8 Mon Sep 17 00:00:00 2001 From: historia Date: Tue, 18 Aug 2026 18:22:43 -0400 Subject: feat: don't truncate transcription logging --- converter/tts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'converter') diff --git a/converter/tts.py b/converter/tts.py index db5de9b..49ebad0 100644 --- a/converter/tts.py +++ b/converter/tts.py @@ -104,7 +104,7 @@ class QwenTTSClient: print("[WARNING] No reference text available; using x-vector-only clone mode (lower quality).") print(' Pass --transcription "..." for higher-quality in-context cloning.') else: - print(f"[OK] Reference text: {self.voice_clone_ref_text[:100]}...") + print(f"[OK] Reference text:\n{self.voice_clone_ref_text}") def _init_client(self, url: str, clone: bool = False) -> None: """Initialize a Gradio client and store its API metadata.""" @@ -179,7 +179,7 @@ class QwenTTSClient: result = model.transcribe(audio_path) text = (result.get("text") or "").strip() if text: - logger.info("Transcription complete via %s: %s...", backend, text[:100]) + logger.info("Transcription complete via %s: %s", backend, text) return text except ImportError: continue -- cgit v1.2.3