Make gui class debug messages consistent

This commit is contained in:
Veronica Berglyd Olsen
2023-06-01 00:31:42 +02:00
parent 8fdec71f4b
commit 3e34721b66
26 changed files with 132 additions and 70 deletions
+6 -2
View File
@@ -47,7 +47,7 @@ class GuiAbout(QDialog):
def __init__(self, mainGui):
super().__init__(parent=mainGui)
logger.debug("Initialising GuiAbout ...")
logger.debug("Create: GuiAbout")
self.setObjectName("GuiAbout")
self.mainGui = mainGui
@@ -110,10 +110,14 @@ class GuiAbout(QDialog):
self.outerBox.addWidget(self.buttonBox)
self.setLayout(self.outerBox)
logger.debug("GuiAbout initialisation complete")
logger.debug("Ready: GuiAbout")
return
def __del__(self):
logger.debug("Delete: GuiAbout")
return
def populateGUI(self):
"""Populate tabs with text.
"""