diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2026-08-02 01:38:09 -0600 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2026-08-02 01:38:09 -0600 |
| commit | fa0304793a4525db68cb53b527d695bfa2c65966 (patch) | |
| tree | 1d10c2cd030e34324fbebe1f093588de2e310dee /main.py | |
| parent | a3aa1df99df8f413cac2ba6020b7cd0dec6d2390 (diff) | |
Remove Debug window feature
Debug button, DebugWindow, and the stdout/stderr tee (core/debug_log.py)
weren't wanted. developer_mode toggle stays — still gates device
Simulation Mode checkboxes and verbose terminal logging.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -13,13 +13,11 @@ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) from PyQt6.QtWidgets import QApplication from ui.main_window import MainWindow -from core.debug_log import install as install_debug_log def main(): app = QApplication(sys.argv) app.setApplicationName("LabDAQ") - install_debug_log() # tee stdout/stderr for the Debug window, before anything prints qss = os.path.join(os.path.dirname(os.path.abspath(__file__)), "ui", "style_dark.qss") if os.path.exists(qss): |
