Added some extra print debugs for now.

This commit is contained in:
Scott Idem
2026-01-12 20:30:45 -05:00
parent 5ce193d474
commit 8927f07bcf

View File

@@ -35,6 +35,7 @@ log = logging.getLogger(__name__)
#) #)
print('### **** *** ** * Aether API v4 using FastAPI - About to try FastAPI() while loading... * ** *** **** ###')
app = FastAPI( app = FastAPI(
# debug = True, # debug = True,
title = 'Aether API', title = 'Aether API',
@@ -47,6 +48,7 @@ app = FastAPI(
log.setLevel(logging.INFO) log.setLevel(logging.INFO)
# log.debug(config.settings) # log.debug(config.settings)
print('### **** *** ** * Aether API v4 using FastAPI - About to try first SQL SELECT (sql_select()) while loading... * ** *** **** ###')
if aether_cfg_sql_result := sql_select( if aether_cfg_sql_result := sql_select(
table_name = 'cfg', table_name = 'cfg',
record_id = config.settings.AETHER_CFG['id'], record_id = config.settings.AETHER_CFG['id'],
@@ -79,6 +81,7 @@ if aether_cfg_sql_result := sql_select(
else: else:
# aether_cfg_sql_result # aether_cfg_sql_result
pass pass
print('### **** *** ** * Aether API v4 using FastAPI - Finished first SQL SELECT (sql_select()) while loading... * ** *** **** ###' )
log.debug(aether_cfg_sql_result) log.debug(aether_cfg_sql_result)
log.debug(config.settings) log.debug(config.settings)