refactor: remove debug logging of SQLAlchemy connection string in Database class

This commit is contained in:
Théophile Diot 2024-11-22 12:26:35 +01:00
parent 3825b38fd8
commit d9068c22de
No known key found for this signature in database
GPG key ID: FA995104A0BA376A

View file

@ -103,8 +103,6 @@ class Database:
if not sqlalchemy_string:
sqlalchemy_string = getenv("DATABASE_URI", "sqlite:////var/lib/bunkerweb/db.sqlite3")
self.logger.debug(f"SQLAlchemy string: {sqlalchemy_string}")
sqlalchemy_string_readonly = getenv("DATABASE_URI_READONLY", "")
if not sqlalchemy_string: