From 5af916d33540854dbe7d5386d65a07d66935dbe0 Mon Sep 17 00:00:00 2001 From: tcely Date: Thu, 30 Jan 2025 19:50:56 -0500 Subject: [PATCH] Add `log` in the block that uses it --- tubesync/tubesync/local_settings.py.container | 1 + 1 file changed, 1 insertion(+) diff --git a/tubesync/tubesync/local_settings.py.container b/tubesync/tubesync/local_settings.py.container index bcadaf58..378abe7a 100644 --- a/tubesync/tubesync/local_settings.py.container +++ b/tubesync/tubesync/local_settings.py.container @@ -31,6 +31,7 @@ if database_connection_env: if database_dict: + from common.logger import log log.info(f'Using database connection: {database_dict["ENGINE"]}://' f'{database_dict["USER"]}:[hidden]@{database_dict["HOST"]}:' f'{database_dict["PORT"]}/{database_dict["NAME"]}')