Testing logger and debug

This commit is contained in:
2024-12-10 15:28:00 +01:00
parent 6fd0c5e770
commit 8830e277ec
5 changed files with 55 additions and 8 deletions

13
lib/DB/ContactDAO.py Normal file
View File

@@ -0,0 +1,13 @@
from .DbManager import DbManager
import json
import mariadb
class ContactDAO:
def __init__(self):
print(f"*** File: {__file__}, __init__()")
self.__con = DbManager().getConnection()
self.__cur = self.__con.cursor()
def getContacts(self):
print(f"*** File: {__file__}, getContacts()")