From 89c70ec7820e43876c7369aaf60cd58eaa30533c Mon Sep 17 00:00:00 2001 From: tcely Date: Thu, 30 Jan 2025 19:45:26 -0500 Subject: [PATCH] Fix log.debug() `common.logger` imports `settings` Creating a circular dependency causes the failure to load this file from `tubesync/settings.py`. Without the change to `DEBUG` from this file the log level is `INFO` instead of `DEBUG` so none of those messages were showing. --- tubesync/tubesync/local_settings.py.container | 1 - 1 file changed, 1 deletion(-) diff --git a/tubesync/tubesync/local_settings.py.container b/tubesync/tubesync/local_settings.py.container index 1b974cdf..bcadaf58 100644 --- a/tubesync/tubesync/local_settings.py.container +++ b/tubesync/tubesync/local_settings.py.container @@ -1,7 +1,6 @@ import os from pathlib import Path from urllib.parse import urljoin -from common.logger import log from common.utils import parse_database_connection_string