summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2026-08-02 01:38:09 -0600
committerChristian Kolset <christian.kolset@gmail.com>2026-08-02 01:38:09 -0600
commitfa0304793a4525db68cb53b527d695bfa2c65966 (patch)
tree1d10c2cd030e34324fbebe1f093588de2e310dee /main.py
parenta3aa1df99df8f413cac2ba6020b7cd0dec6d2390 (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.py2
1 files changed, 0 insertions, 2 deletions
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):