From 38a4fd71809996705c0c754472650e0935875ee9 Mon Sep 17 00:00:00 2001 From: oberon Date: Mon, 16 Feb 2026 19:16:02 +0100 Subject: [PATCH] fixxes logger error --- app/routes/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/routes/main.py b/app/routes/main.py index cca8c0f..2750d83 100644 --- a/app/routes/main.py +++ b/app/routes/main.py @@ -9,6 +9,8 @@ from config import Config main_bp = Blueprint('main', __name__) +logger = logging.getLogger(__name__) + @main_bp.route('/') def index(): configs = load_configs()