General clean up. Less debug.

This commit is contained in:
Scott Idem
2023-07-12 15:20:13 -04:00
parent 9f99ca23ba
commit 7d51376cb5
6 changed files with 8 additions and 9 deletions

View File

@@ -85,7 +85,7 @@ async def patch_grant_obj(
commons: Common_Route_Params = Depends(common_route_params),
):
log.setLevel(logging.DEBUG) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.setLevel(logging.INFO) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
log.debug(locals())
if grant_id := redis_lookup_id_random(record_id_random=grant_id, table_name='grant'): pass

View File

@@ -11,7 +11,6 @@ from app.routers.api_crud import delete_obj_template, get_obj_template, get_obj_
from app.methods.data_store_methods import create_update_data_store_obj, get_data_store_rec_list, load_data_store_obj, load_data_store_obj_w_code
# from app.models.common_field_schema import default_num_bytes
from app.models.util_email_models import Email_Send_Base
from app.models.response_models import Resp_Body_Base, mk_resp
@@ -74,4 +73,4 @@ async def util_email_send_obj(
resp_data = False
return mk_resp(data=resp_data, status_code=status_code, response=commons.response, status_message=status_message)
# ### END ### API Utility: Email ### util_email_send_obj() ###
# ### END ### API Utility: Email ### util_email_send_obj() ###