use logging and cleanup
Some checks failed
CI/CD / build (push) Successful in 9m25s
CI/CD / wol (push) Has been cancelled

This commit is contained in:
2025-08-18 21:30:26 +02:00
parent 9c6239028d
commit 6a63ff5d0b
5 changed files with 23 additions and 122 deletions

View File

@@ -1,3 +1,4 @@
import logging
import sys
from PySide6.QtGui import QPainter
@@ -33,6 +34,10 @@ class Window(QWidget):
self.show()
logging.basicConfig(
level=logging.DEBUG,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
)
app = QApplication(sys.argv)
w = Window()
app.exec()