1
0
forked from IPKM/nmreval

display logged error messages within program

This commit is contained in:
Dominik Demuth
2023-01-10 19:46:19 +01:00
parent a98f454942
commit 89a3313e74
4 changed files with 135 additions and 4 deletions

View File

@ -1019,3 +1019,10 @@ class NMRMainWindow(QtWidgets.QMainWindow, Ui_BaseWindow):
def look_for_update(self):
w = UpdateDialog(parent=self)
w.show()
@QtCore.pyqtSlot(name='on_actionShow_error_log_triggered')
def open_log(self):
from ..lib.logger import QLog
QLog(parent=self).show()