Enhance logging: update logger configuration to use 'app' and set log level to INFO

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-29 13:30:52 +02:00
parent 2ef5056727
commit 79f07d8631
+2 -1
View File
@@ -20,7 +20,8 @@ from bson.objectid import ObjectId
import settings as cfg
from settings import MongoClient
logger = logging.getLogger(__name__)
logger = logging.getLogger('app')
logger.setLevel(logging.INFO)
def normalize_student_card_id(card_id):