From fa0304793a4525db68cb53b527d695bfa2c65966 Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Sun, 2 Aug 2026 01:38:09 -0600 Subject: Remove Debug window feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- main.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index ede6277..b023b99 100644 --- a/main.py +++ b/main.py @@ -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): -- cgit v1.2.3