change critical to debug for database path log
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user