diff options
| author | Christian Kolset <ckolset@colostate.edu> | 2026-07-29 13:40:09 -0600 |
|---|---|---|
| committer | Christian Kolset <ckolset@colostate.edu> | 2026-07-29 13:40:09 -0600 |
| commit | 23800a32231acecbace12bfc41c03b081b1bf565 (patch) | |
| tree | 213caf20b68b95ba674cf29d4e806a9b59aadb0d /main.py | |
| parent | 2c6b4b751ffdd1156254b31745597654b5f2e286 (diff) | |
| parent | cf33095f77e6ff902fb69932fa704eb6192b3418 (diff) | |
Merge branch 'feat/dev-debug-window'
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -13,11 +13,13 @@ 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): |
