From ee6dfe00d87dc31bfb8e571b669c183000283b32 Mon Sep 17 00:00:00 2001 From: jknapp Date: Sun, 28 Dec 2025 20:40:20 -0800 Subject: [PATCH] Enable console window for debugging PyInstaller build issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Temporarily enable console output to diagnose "failed to start recording" error in the PyInstaller build. This will show all print() statements and error messages that are currently being hidden. Change console=False to console=True in the spec file. Once the issue is identified and fixed, set back to console=False for a production build without the console window. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- local-transcription.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local-transcription.spec b/local-transcription.spec index dcfdff1..ec39400 100644 --- a/local-transcription.spec +++ b/local-transcription.spec @@ -166,7 +166,7 @@ exe = EXE( bootloader_ignore_signals=False, strip=False, upx=True, - console=False, # Hide console window for GUI application + console=True, # Show console for debugging (set to False for production) disable_windowed_traceback=False, argv_emulation=False, target_arch=None,