Trying to fix a logging bug?

This commit is contained in:
Scott Idem
2023-06-13 12:02:55 -04:00
parent 31d82cc5d8
commit 92a8edd435

View File

@@ -44,7 +44,7 @@ app = FastAPI(
) )
log.setLevel(logging.INFO) log.setLevel(logging.DEBUG)
log.debug(config.settings) log.debug(config.settings)
if aether_cfg_sql_result := sql_select( if aether_cfg_sql_result := sql_select(
@@ -79,8 +79,8 @@ if aether_cfg_sql_result := sql_select(
else: else:
# aether_cfg_sql_result # aether_cfg_sql_result
pass pass
# log.debug(aether_cfg_sql_result) log.debug(aether_cfg_sql_result)
# log.debug(config.settings) log.debug(config.settings)
# @lru_cache() # @lru_cache()
# def get_settings(): # def get_settings():