From 42dc945ab67238b789572b236decaebd34ef4d19 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Thu, 3 Jul 2025 07:22:26 +0200 Subject: [PATCH] change critical to debug for database path log --- src/backend/admin_console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/admin_console.py b/src/backend/admin_console.py index 69f6006..38b45f5 100644 --- a/src/backend/admin_console.py +++ b/src/backend/admin_console.py @@ -24,7 +24,7 @@ class AdminCommands: else: self.db = Database(db_path=db_path) log.info("AdminCommands initialized with database connection.") - log.critical("location: {}", self.db.db_path) + log.debug("location: {}", self.db.db_path) def create_password(self, password: str) -> tuple[str, str]: """Create a hashed password and a salt for the password.