rm leftover debug log

This commit is contained in:
Brendan Shanahan 2026-04-10 16:23:38 -04:00
parent 5b93655f42
commit 4a1eb3712c

View file

@ -78,7 +78,6 @@ def register_connection(db_url: str, connect_args: dict | None = None):
connection["sslrootcert"] = connect_args["sslrootcert"]
# Use our custom database class that supports reconnection
log.debug(f"Peewee connection params (password redacted): { {k: ('***' if k == 'password' else v) for k, v in connection.items()} }")
db = ReconnectingPostgresqlDatabase(**connection)
db.connect(reuse_if_open=True)
elif isinstance(db, SqliteDatabase):