logging levels modified; log interface for hipa added

This commit is contained in:
2023-05-16 12:23:19 +02:00
parent 051e361c9f
commit bdad077350

View File

@@ -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)