change critical to debug for database path log

This commit is contained in:
2025-07-03 07:22:26 +02:00
parent 9b0bf3663b
commit 42dc945ab6

View File

@@ -24,7 +24,7 @@ class AdminCommands:
else: else:
self.db = Database(db_path=db_path) self.db = Database(db_path=db_path)
log.info("AdminCommands initialized with database connection.") 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]: def create_password(self, password: str) -> tuple[str, str]:
"""Create a hashed password and a salt for the password. """Create a hashed password and a salt for the password.