Make gui class debug messages consistent
This commit is contained in:
@@ -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.
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user