Work on event stuff

This commit is contained in:
Scott Idem
2021-11-08 17:00:51 -05:00
parent 30983ec507
commit e97e8e56e8
4 changed files with 7 additions and 7 deletions

View File

@@ -37,7 +37,7 @@ async def post_event_session_obj_new_v4(
exclude_unset: bool = True,
response: Response = Response,
):
log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.setLevel(logging.INFO) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
# There should probably be a check for the event ID before calling the create function?
@@ -92,7 +92,7 @@ async def patch_event_session_obj_exist_v4(
exclude_none: Optional[bool] = True,
response: Response = Response,
):
log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.setLevel(logging.INFO) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
if event_session_id := redis_lookup_id_random(record_id_random=event_session_id, table_name='event_session'): pass