Testing logger and debug
This commit is contained in:
13
main.py
13
main.py
@@ -1,6 +1,6 @@
|
||||
# This Python file uses the following encoding: utf-8
|
||||
import sys
|
||||
# from pathlib import Path
|
||||
import logging
|
||||
from PySide6.QtGui import QGuiApplication
|
||||
from PySide6.QtQml import QQmlApplicationEngine
|
||||
#from PySide6.QtCore import QResource
|
||||
@@ -12,7 +12,7 @@ from lib.DB.DbManager import DbManager
|
||||
from lib.DB.UserManager import UserManager
|
||||
from lib.DB.AddressModel import AddressModel
|
||||
from lib.DB.BTypeModel import BTypeModel
|
||||
|
||||
from lib.DB.ContactModel import ContactModel
|
||||
|
||||
|
||||
# [pyqcrm]
|
||||
@@ -26,16 +26,19 @@ from lib.DB.BTypeModel import BTypeModel
|
||||
# password=""
|
||||
# name=""
|
||||
# type=""
|
||||
logger = logging.getLogger(__name__)
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
|
||||
bad_config = False
|
||||
am = None
|
||||
bm = None
|
||||
btm = None
|
||||
contact_model = None
|
||||
user = None
|
||||
|
||||
def initializeProgram():
|
||||
# print(f"In {__file__} file, initializeProgram()")
|
||||
global am, bad_config, bm, user, btm
|
||||
global am, bad_config, bm, user, btm, contact_model
|
||||
if not bad_config:
|
||||
dbconf = config.getConfig()['database']
|
||||
DbManager(dbconf)
|
||||
@@ -44,16 +47,18 @@ def initializeProgram():
|
||||
user = UserManager()
|
||||
am = AddressModel()
|
||||
btm = BTypeModel()
|
||||
contact_model = ContactModel()
|
||||
|
||||
publishContext()
|
||||
|
||||
def publishContext():
|
||||
# print(f"In {__file__} file, publishContext()")
|
||||
global engine, am, bad_config, bm, user, btm
|
||||
global engine, am, bad_config, bm, user, btm, contact_model
|
||||
engine.rootContext().setContextProperty("loggedin_user", user)
|
||||
engine.rootContext().setContextProperty("bm", bm)
|
||||
engine.rootContext().setContextProperty("am", am)
|
||||
engine.rootContext().setContextProperty("btm", btm)
|
||||
engine.rootContext().setContextProperty("contact_model", contact_model)
|
||||
|
||||
if __name__ == "__main__":
|
||||
#QResource.registerResource("rc_qml.py")
|
||||
|
||||
Reference in New Issue
Block a user