Changeset 41d6187 in sasview for src/sas/qtgui/MainWindow
- Timestamp:
- Jul 13, 2018 5:26:57 AM (6 years ago)
- Children:
- 6138f73
- Parents:
- 158a0c7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
rf0a8f74 r41d6187 13 13 # General SAS imports 14 14 from sas.qtgui.Utilities.ConnectionProxy import ConnectionProxy 15 from sas.qtgui.Utilities.SasviewLogger import XStream15 from sas.qtgui.Utilities.SasviewLogger import setup_qt_logging 16 16 17 17 import sas.qtgui.Utilities.LocalConfig as LocalConfig … … 86 86 87 87 # Fork off logging messages to the Log Window 88 XStream.stdout().messageWritten.connect(self.listWidget.insertPlainText)89 XStream.stderr().messageWritten.connect(self.listWidget.insertPlainText)88 handler = setup_qt_logging() 89 handler.messageWritten.connect(self.listWidget.insertPlainText) 90 90 91 91 # Log the start of the session
Note: See TracChangeset
for help on using the changeset viewer.