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

@@ -38,7 +38,7 @@ logging.config.dictConfig({
}
},
'root': {
'handlers': ['console', 'log_file_all'], #, 'log_file_all', 'log_file_warning'],
'handlers': ['console'], #, 'log_file_all', 'log_file_warning'],
'level': 'WARNING', # WARNING
}
})

View File

@@ -174,7 +174,7 @@ def load_event_session_obj(
# Updated 2022-09-20
if inc_event_location_list:
log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
# log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.info('Need to include event location list...')
if event_location_rec_list_result := get_event_location_rec_list(

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,