From bdad077350d685dd03a82555d962bbe5e7a3764e Mon Sep 17 00:00:00 2001 From: chrin Date: Tue, 16 May 2023 12:23:19 +0200 Subject: [PATCH] logging levels modified; log interface for hipa added --- guiframe.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/guiframe.py b/guiframe.py index 5818fac..7378e66 100644 --- a/guiframe.py +++ b/guiframe.py @@ -1976,12 +1976,13 @@ class GUIFrame(QWidget): def input_wgt_logging(self, irow, wgt_grid): - tooltip = "Select logging level, CRITICAL=50, NOTSET=0" - value = ['CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG', 'NOTSET'] + tooltip = "Select logging level, CRITICAL=50, DEBUG=10" + value = ['CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG'] #NOTSET=0 label = QLabel("Logging level:") label.setFixedHeight(24) label.setFont(self.font_pts10) label.setContentsMargins(5, 0, 0, 0) + label.setToolTip(tooltip) return self.input_wgt_qcombobox(label, "loggingLevel", value, irow, wgt_grid)