From e5daa1af349c28840bdcc026b8f66065f19c8b1b Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 5 Jun 2023 05:08:56 +0300 Subject: Handle unhandled SQLite3 errors. --- gn3/auth/db.py | 1 + 1 file changed, 1 insertion(+) (limited to 'gn3/auth/db.py') diff --git a/gn3/auth/db.py b/gn3/auth/db.py index b8c91e9..9d5463f 100644 --- a/gn3/auth/db.py +++ b/gn3/auth/db.py @@ -48,6 +48,7 @@ class DbCursor(Protocol): @contextlib.contextmanager def connection(db_path: str, row_factory: Callable = sqlite3.Row) -> Iterator[DbConnection]: """Create the connection to the auth database.""" + logging.debug(f"SQLite3 DB Path: '{db_path}'.") conn = sqlite3.connect(db_path) conn.row_factory = row_factory conn.set_trace_callback(logging.debug) -- cgit v1.2.3