From 92a8edd435c6bb939b9a52b0b2e489614c20b560 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Tue, 13 Jun 2023 12:02:55 -0400 Subject: [PATCH] Trying to fix a logging bug? --- app/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main.py b/app/main.py index ed47cef..fc940e9 100644 --- a/app/main.py +++ b/app/main.py @@ -44,7 +44,7 @@ app = FastAPI( ) -log.setLevel(logging.INFO) +log.setLevel(logging.DEBUG) log.debug(config.settings) if aether_cfg_sql_result := sql_select( @@ -79,8 +79,8 @@ if aether_cfg_sql_result := sql_select( else: # aether_cfg_sql_result pass -# log.debug(aether_cfg_sql_result) -# log.debug(config.settings) +log.debug(aether_cfg_sql_result) +log.debug(config.settings) # @lru_cache() # def get_settings():