pamhyr: Put debug info as logger debug handler.

setup.py
Pierre-Antoine Rouby 2023-10-09 16:55:54 +02:00
parent 397b5b0cab
commit 242b1a4e50
2 changed files with 5 additions and 4 deletions

View File

@ -86,11 +86,11 @@ def legal_info():
def debug_info(): def debug_info():
py_version = sys.version.split("\n")[0] py_version = sys.version.split("\n")[0]
logger.info(f"python: {py_version}") logger.debug(f"python: {py_version}")
info = QLibraryInfo info = QLibraryInfo
logger.info(f"{info.location(QLibraryInfo.PrefixPath)}") logger.debug(f"Qt PrefixPath: {info.location(QLibraryInfo.PrefixPath)}")
logger.info(f"{info.location(QLibraryInfo.LibraryExecutablesPath)}") logger.debug(f"Qt LibExecPath: {info.location(QLibraryInfo.LibraryExecutablesPath)}")
def setup_lang(app, conf:Config): def setup_lang(app, conf:Config):
"Return QTranslator configured for current language" "Return QTranslator configured for current language"

View File

@ -62,6 +62,8 @@ def gui(app:QApplication, conf:Config):
application = ApplicationWindow(conf=conf) application = ApplicationWindow(conf=conf)
application.show() application.show()
debug_info()
return app.exec_() return app.exec_()
def main(): def main():
@ -72,7 +74,6 @@ def main():
app.installTranslator(tr) app.installTranslator(tr)
legal_info() legal_info()
debug_info()
if len(sys.argv) > 1: if len(sys.argv) > 1:
# Run a script # Run a script