Minor changes

This commit is contained in:
Scott Idem
2022-09-28 18:20:35 -04:00
parent a18388e841
commit b7d48c67bf
3 changed files with 4 additions and 4 deletions

View File

@@ -49,11 +49,11 @@ async def get_aether_flask_cfg_obj(
x_account_id: str = Header(None, min_length=11, max_length=22),
response: Response = Response,
):
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
if sql_select_result := sql_select(
table_name = 'flask_cfg',
table_name = 'cfg_flask',
record_id = aether_flask_cfg_id,
as_list = False,
max_count = 1,